forked from AustinCodingAcademy/debugging-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 702 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 702 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
{
"name": "debugging-challenge",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^7.2.2",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^6.10.3",
"react-scripts": "^0.9.5"
},
"dependencies": {
"foreman": "^2.0.0",
"json-server": "^0.9.6",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"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"
}
}