-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 KB
/
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
{
"name": "polls",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "nodemon --exec 'mocha -R min'",
"client": "npm run start --prefix client",
"init": "npm install && cd client && npm install && npm run build",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test-travis": "NODE_ENV=test CI=true cd client && npm install && npm run test-travis -- --coverage",
"now-build": "cd client && npm install && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.4",
"mongoose": "^5.3.10",
"nodemon": "^1.18.6",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"concurrently": "^3.6.1",
"mocha": "^5.2.0",
"passport-mock": "0.0.3",
"prettier": "^1.15.1",
"sinon": "^5.1.1",
"supertest": "^3.3.0"
}
}