-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 770 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 770 Bytes
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
{
"name": "advanced-fetch-practice",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.14.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-react": "^6.9.0",
"react-scripts": "0.7.0"
},
"dependencies": {
"foreman": "^2.0.0",
"json-server": "^0.9.4",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"start": "nf start",
"lint": "eslint src",
"react-app": "react-scripts start",
"api": "json-server --id _id --watch --port 4000 db.json",
"build": "react-scripts build",
"test": "npm run lint && react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"proxy": "http://localhost:4000"
}