-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 864 Bytes
/
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
{
"name": "cra-node-boilerplate",
"version": "0.0.1",
"description": "A boilerplate to show how to serve create-react-app with node server for injecting server data dynamically into page and securing API without login authentication.",
"main": "index.js",
"repository": "https://github.com/just4fun/cra-node-boilerplate",
"author": "just4fun <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^4.1.1",
"cookie-parser": "^1.4.4",
"csurf": "^1.10.0",
"express": "^4.17.1",
"nodemon": "^1.19.1"
},
"scripts": {
"start": "node index.js",
"client": "yarn --cwd client start",
"server": "nodemon index.js",
"dev": "concurrently \"yarn run server\" \"yarn run client\"",
"heroku-postbuild": "yarn --cwd client && yarn --cwd client run build"
}
}