-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 991 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
36
37
38
39
{
"name": "RiceBookServer",
"private": true,
"version": "0.0.0",
"description": "Demo RiceBookServer",
"license": "MIT",
"main": "index.js",
"dependencies": {
"body-parser": "^1.18.2",
"chai": "^3.5.0",
"cloudinary": "^1.9.1",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"isomorphic-fetch": "^2.2.1",
"md5": "^2.2.1",
"mongoose": "^4.12.6",
"morgan": "^1.7.0",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"stream": "0.0.2"
},
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"test": "mocha --opts mocha.opts ./src/*.spec.js --reporter mocha-junit-reporter",
"test:watch": "npm run test -- -w"
},
"devDependencies": {
"chai": "^3.5.0",
"isomorphic-fetch": "^2.2.1",
"mocha": "^3.1.2",
"mocha-junit-reporter": "^1.15.0",
"morgan": "^1.9.0",
"nodemon": "^1.11.0"
}
}