-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 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": "express-create-react-app-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"cd server && DEV=true nodemon index.js\" \"cd client && npm start\"",
"build": "cd client && npm install --only=dev && npm install && npm run build",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build",
"setup": "npm install && cd client && npm install"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.16.2",
"bcrypt-node": "^0.1.0",
"bluebird": "^3.5.0",
"body-parser": "^1.18.1",
"concurrently": "^3.5.0",
"connect-mongo": "^1.3.2",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"mobx": "^3.3.0",
"mobx-react": "^4.3.2",
"mongoose": "^4.11.12",
"moniker": "^0.1.2",
"react-router-dom": "^4.2.2",
"socket.io": "^2.0.3"
}
}