forked from mdn/express-locallibrary-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 846 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
{
"name": "express-locallibrary-tutorial",
"version": "0.0.0",
"engines": {
"node": "12.18.4"
},
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=express-locallibrary-tutorial:* npm run devstart"
},
"dependencies": {
"@simplewebauthn/browser": "^0.10.0",
"@simplewebauthn/server": "^0.10.3",
"async": "^3.2.0",
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-validator": "^6.6.1",
"helmet": "^4.1.1",
"http-errors": "~1.6.3",
"luxon": "^1.25.0",
"mongoose": "^5.10.7",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}