-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 928 Bytes
/
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
{
"name": "expressjs-sandbox",
"version": "0.0.0",
"private": true,
"scripts": {
"lint": "eslint . bin/www",
"lint:fix": "eslint . bin/www --fix",
"start": "node ./bin/www"
},
"dependencies": {
"@maxmind/geoip2-node": "^1.4.0",
"cookie-parser": "~1.4.5",
"debug": "~4.1.1",
"express": "~4.17.1",
"http-errors": "~1.7.3",
"mongoose": "^5.9.4",
"morgan": "~1.10.0",
"multer": "^1.4.2",
"pug": "2.0.4",
"unicode-substring": "^1.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "npm run lint:fix"
}
}