-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.16 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "example-create-react-app-express",
"version": "1.0.0",
"description": "Example on using create-react-app with a Node Express Backend",
"author": {
"name": "Esau Silva",
"twitter": "@_esausilva",
"url": "https://esausilva.com"
},
"license": "MIT",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"dev:server": "cd client && yarn build && cd .. && yarn start",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.5",
"express": "^4.17.1"
},
"devDependencies": {
"concurrently": "^5.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/esausilva/example-create-react-app-express.git"
},
"bugs": {
"url": "https://github.com/esausilva/example-create-react-app-express/issues"
},
"keywords": [
"node",
"express",
"create-react-app"
]
}