-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "express-locallibrary-tutorial",
"version": "0.0.0",
"engines": {
"node": ">=18.15.0"
},
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon --inspect ./bin/www",
"serverstart": "DEBUG=express-locallibrary-tutorial:* npm run devstart"
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^6.7.1",
"express-validator": "^7.0.1",
"glob-parent": "^5.1.2",
"got": "^11.8.5",
"helmet": "^7.0.0",
"http-errors": "~1.6.3",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"mongoose": "^7.3.2",
"morgan": "~1.9.1",
"package-json": "^6.5.0",
"pug": "3.0.1",
"qs": "^6.5.3"
},
"overrides": {
"graceful-fs": "^4.1.0",
"nodemon": {
"minimatch": "3.0.5",
"update-notifier": {
"latest-version": {
"package-json": "6.5.0"
}
}
}
},
"devDependencies": {
"nodemon": "1.3"
}
}