-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "aiaautd-wix-external-db-adapter",
"version": "1.0.0",
"engines": {
"node": ">=8.3.0"
},
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "nodemon --inspect app.js",
"lint": "eslint '**/*.js'",
"lint:fix": "prettier-eslint '**/*.js' --write"
},
"author": "Jack Jingxi Li",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"dependencies": {
"aws-sdk": "^2.963.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"mongodb": "^3.6.11",
"mpath": "^0.8.3",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^4.3.8",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1"
}
}