-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 706 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"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": {
"body-parser": "^1.18.2",
"concurrently": "^3.5.0",
"express": "^4.15.4"
}
}