19 lines
403 B
JSON
19 lines
403 B
JSON
{
|
|
"name": "heroku-cra-node-server",
|
|
"version": "3.0.0",
|
|
"description": "How to use create-react-app with a custom Node API on Heroku",
|
|
"engines": {
|
|
"node": "10.x"
|
|
},
|
|
"scripts": {
|
|
"start": "node .",
|
|
"build": "cd react-ui/ && npm install && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.16.4"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {}
|
|
}
|