forked from scotch-io/node-crud-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 788 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
{
"name": "node-crud",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scotch-io/node-crud-course.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/scotch-io/node-crud-course/issues"
},
"homepage": "https://github.com/scotch-io/node-crud-course#readme",
"dependencies": {
"body-parser": "^1.15.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"dotenv": "^2.0.0",
"ejs": "^2.5.1",
"express": "^4.14.0",
"express-ejs-layouts": "^2.2.0",
"express-session": "^1.14.0",
"express-validator": "^2.20.8",
"mongoose": "^4.5.8"
}
}