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) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 739 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": {
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"debug": "^4.3.5",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.3.0",
"express-validator": "^7.1.0",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"luxon": "^3.4.4",
"mongoose": "^8.9.5",
"morgan": "^1.10.0",
"pug": "^3.0.3"
},
"devDependencies": {
"nodemon": "^3.1.3"
}
}