-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 968 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "react200",
"version": "1.0.0",
"private": true,
"dependencies": {
"formsy-react": "^1.1.4",
"json-server": "^0.12.2",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"recompose": "^0.27.0",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"npm-run-all": "^4.1.3",
"prettier": "^1.12.1",
"react-scripts": "^1.1.4"
},
"scripts": {
"start": "run-p start:dev start:api",
"start:dev": "react-scripts start",
"start:api": "json-server --port 3001 data/people.json",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"prettier": "prettier --write \"src/**/*.js\""
},
"eslintConfig": {
"extends": "react-app"
},
"proxy": {
"/api": {
"target": "http://localhost:3001",
"pathRewrite": {
"^/api/": "/"
}
}
}
}