-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 785 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 785 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
25
26
27
28
{
"name": "react-express-postgres-heroku",
"version": "1.0.0",
"engines": {
"node": "8.x.x",
"npm": "5.x.x"
},
"private": true,
"description": "Create React App with Express API and Postgres in Heroku",
"scripts": {
"postinstall":
"npm --prefix react-ui install && npm --prefix server install",
"start:dev":
"concurrently 'npm run --prefix react-ui start' 'npm run --prefix server start'",
"heroku-postbuild": "npm run --prefix react-ui build",
"start": "cd server && NODE_ENV=production node server.js"
},
"author": "Ari Autio <ari.autio@iki.fi>",
"license": "MIT",
"devDependencies": {
"concurrently": "^3.5.0"
},
"cacheDirectories": [
"node_modules",
"react-ui/node_modules",
"server/node_modules"
]
}