38 lines
933 B
JSON
38 lines
933 B
JSON
{
|
|
"name": "heroku-cra-node",
|
|
"version": "3.0.0",
|
|
"description": "How to use create-react-app with a custom Node API on Heroku",
|
|
"engines": {
|
|
"node": "10.x"
|
|
},
|
|
"scripts": {
|
|
"install": "run-p clientinstall serverinstall",
|
|
"clientinstall": "cd react-ui && npm install",
|
|
"serverinstall": "cd server && npm install",
|
|
"start": "run-p clientstart serverstart",
|
|
"clientstart": "cd react-ui && npm start",
|
|
"serverstart": "cd server && npm start",
|
|
"build": "cd react-ui && npm install && npm run build"
|
|
},
|
|
"cacheDirectories": [
|
|
"node_modules",
|
|
"server/node_modules",
|
|
"react-ui/node_modules"
|
|
],
|
|
"dependencies": {
|
|
"npm-run-all": "^4.1.5"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mohiit1502/heroku-cra-node.git"
|
|
},
|
|
"keywords": [
|
|
"node",
|
|
"heroku",
|
|
"create-react-app",
|
|
"react"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {}
|
|
}
|