forked from rice-apps/chaus-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 885 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
{
"name": "RiceChaus",
"private": true,
"version": "0.0.0",
"license": "MIT",
"main": "index.js",
"dependencies": {
"body-parser": "^1.18.2",
"cloudinary": "^1.4.6",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"express": "^4.16.2",
"express-session": "^1.14.2",
"md5": "^2.2.1",
"mongoosastic": "^4.3.0",
"mongoose": "^4.6.5",
"morgan": "^1.7.0",
"multer": "^1.2.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"redis": "^2.6.3",
"request": "^2.79.0"
},
"scripts": {
"start": "node ./src/index.js",
"watch": "nodemon ./src/index.js",
"test": "mocha --opts mocha.opts src/**/*.spec.js",
"test:watch": "npm run test -- -w"
},
"devDependencies": {
"chai": "^3.5.0",
"dotenv": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"mocha": "^3.1.2",
"nodemon": "^1.11.0"
}
}