forked from mdn/express-locallibrary-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 731 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 731 Bytes
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
{
"name": "express-locallibrary-tutorial",
"version": "0.0.1",
"engines": {
"node": ">=v16.15.0"
},
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=express-locallibrary-tutorial:* npm run devstart"
},
"dependencies": {
"async": "^3.2.4",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"debug": "~4.3.4",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^6.15.0",
"helmet": "^6.1.2",
"http-errors": "~2.0.0",
"luxon": "^3.3.0",
"mongoose": "^6.9.0",
"morgan": "^1.10.0",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}