-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
37
38
39
40
41
42
{
"name": "fcc-voting",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:thinktwice13/fcc-voting.git",
"author": "Mario K",
"license": "MIT",
"engines": {
"node": "8.x.x"
},
"dependencies": {
"body-parser": "^1.17.2",
"cookie-session": "^1.3.1",
"express": "^4.15.4",
"mongoose": "^4.11.9",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"public-ip": "^2.3.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"chai-things": "^0.2.0",
"concurrently": "^3.5.0",
"gulp": "^3.9.1",
"gulp-live-server": "^0.0.31",
"gulp-watch": "^4.3.11",
"mocha": "^4.0.1",
"nodemon": "^1.11.0"
},
"scripts": {
"dev": "mocha --exit && NODE_ENV=development concurrently \"yarn server\" \"yarn client\"",
"server": "nodemon index",
"client": "npm run start --prefix client",
"start": "node index",
"test": "mocha --exit",
"postinstall": "cd client && npm install && cd ..",
"heroku-postbuild":
"NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"cacheDirectories": ["node_modules", "client/node_modules"]
}