-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "create-react-redux-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"history": "^4.7.2",
"immutable": "^3.8.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.0",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.2",
"redux-saga": "^0.15.6"
},
"devDependencies": {
"eslint": "4.5.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.3.0",
"lint-staged": "^4.0.4",
"pre-commit": "^1.2.2",
"react-scripts": "1.0.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "npm run lint:js",
"lint:staged": "lint-staged",
"lint:js": "eslint --ext .js src/"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.js": "lint:js"
},
"proxy": "https://httpbin.org"
}