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
30 lines (30 loc) · 646 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 646 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
{
"name": "express-locallibrary-tutorial",
"version": "0.0.0",
"engines": {
"node": "8.9.1"
},
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www"
},
"dependencies": {
"async": "^2.6.0",
"body-parser": "~1.18.2",
"compression": "^1.7.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.2",
"express-validator": "^4.3.0",
"helmet": "^3.10.0",
"moment": "^2.20.1",
"mongoose": "^5.0.1",
"morgan": "~1.9.0",
"pug": "~2.0.0-rc.4",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"nodemon": "^1.14.11"
}
}