forked from wdi-sg/project-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 907 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 907 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
32
33
34
35
36
37
38
39
40
{
"name": "second-project",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "NODE_ENV=test node_modules/mocha/bin/mocha"
},
"engines": {
"node": "^7.3.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.0",
"body-parser": "^1.16.0",
"colors": "^1.1.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.5",
"express": "^4.14.0",
"express-ejs-layouts": "^2.2.0",
"express-session": "^1.14.2",
"method-override": "^2.3.7",
"mongoose": "^4.7.7",
"morgan": "^1.7.0",
"multer": "^1.2.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"serve-favicon": "^2.3.2",
"superagent": "^3.3.2"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"supertest": "^2.0.1"
}
}