-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
41
42
43
44
45
46
47
{
"name": "chipadvisor",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"multer": "^1.4.2",
"pg": "^7.12.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-easy-state": "^6.1.3",
"react-hook-form": "^4.4.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.1.1",
"react-visibility-sensor": "^5.1.1",
"sharp": "^0.24.0",
"styled-components": "^4.4.1"
},
"proxy": "http://localhost:8000",
"scripts": {
"start-client": "react-scripts start",
"start-server": "NODE_ENV=development nodemon --ignore '*.test.js' --watch server server/index.js",
"build": "react-scripts build",
"test-client": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}