-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 883 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 883 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
{
"name": "PassportJS",
"version": "0.0.0",
"private": true,
"scripts": {
"setup-mongodb": "sh ./data/import-data.sh",
"prestart": "npm run setup-mongodb",
"start": "nodemon app.js",
"test": "mocha --recursive --exit"
},
"dependencies": {
"aws-sdk": "^2.149.0",
"body-parser": "~1.13.2",
"connect-mongo": "^1.3.2",
"cookie-parser": "~1.3.5",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"debug": "~2.2.0",
"dotenv": "^4.0.0",
"ejs": "~2.3.3",
"express": "~4.13.1",
"express-session": "^1.15.6",
"mongoose": "^4.13.1",
"morgan": "~1.6.1",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-arrays": "^2.0.0",
"chai-http": "^3.0.0",
"mocha": "^4.0.1",
"nodemon": "^1.12.5"
}
}