-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1007 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
{
"name": "react-auth-base",
"version": "0.0.1",
"description": "fcc project voting app",
"engines": {
"node": "6.11.x"
},
"dependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"express": "4.13.3",
"jsonwebtoken": "^7.4.2",
"mongodb": "^2.2.25",
"mongoose": "^4.11.6",
"passport": "^0.3.2",
"passport-local": "^1.0.0"
},
"scripts": {
"start": "node server",
"heroku-postbuild": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"start-dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon --watch server --exec babel-node -- ./server",
"client": "babel-node start-client.js",
"lint": "eslint ."
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"license": "MIT",
"devDependencies": {
"concurrently": "^3.1.0",
"nodemon": "^1.11.0"
}
}