-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@tractorzoom/serverless-mysql-utils",
"version": "5.2.44",
"description": "Wrapper around serverless-mysql implementing standardized error handling and automatic retries",
"main": "index.js",
"author": "@TractorZoom",
"license": "MIT",
"scripts": {
"build": "rimraf lib && tsc --project tsconfig.build.json && cp package.json lib",
"commit": "git-cz",
"test": "jest",
"prettier:all": "prettier --write './**/*.*'",
"pretty-quick": "pretty-quick",
"lint": "eslint --ext .ts,.js ./src",
"prepare": "husky install"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/jest": "29.5.3",
"@types/node": "16.18.11",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"chance": "1.1.9",
"commitizen": "4.2.6",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-filename-rules": "1.3.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"husky": "8.0.3",
"jest": "29.3.1",
"prettier": "2.8.3",
"pretty-quick": "3.1.3",
"semantic-release": "19.0.5",
"ts-jest": "29.0.3",
"typescript": "4.9.4",
"uuid": "9.0.0"
},
"dependencies": {
"mysql2": "3.6.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/TractorZoom/serverless-mysql-utils.git"
},
"homepage": "https://github.com/TractorZoom/serverless-mysql-utils",
"bugs": {
"url": "https://github.com/TractorZoom/serverless-mysql-utils/issues"
},
"keywords": [
"serverless",
"mysql",
"serverless-mysql",
"sql"
],
"types": "index.d.ts"
}