-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 KB
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
41
42
43
44
45
46
47
48
49
50
{
"name": "debug-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"debug": "~2.6.9",
"express": "~4.16.0",
"morgan": "~1.9.0",
"node-fetch": "^2.2.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-scripts": "^3.1.1"
},
"scripts": {
"start": "react-scripts start",
"start:server": "node server/index.js",
"start:server:dev": "nodemon server/index.js",
"start:server:debug": "nodemon --inspect=0.0.0.0:5858 server/index.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dev": "concurrently --kill-others-on-fail \"yarn start\" \"yarn start:server:dev\"",
"prod": "yarn build && yarn start:server",
"debug": "concurrently --kill-others-on-fail \"yarn start\" \"yarn start:server:debug\"",
"docker-debug": "docker-compose up"
},
"devDependencies": {
"concurrently": "^4.0.1",
"nodemon": "^1.18.4",
"react-test-renderer": "^16.5.2"
},
"proxy": "http://localhost:3001/",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}