-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
65 lines (65 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "code",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "6",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"react-scripts": "0.9.0"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-form": "^6.5.0",
"redux-saga": "^0.14.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"globals": {
"localStorage": true,
"document": true,
"fetch": true
},
"rules": {
"semi": [
"error",
"never"
],
"space-before-function-paren": [
"error",
"always"
],
"jsx-quotes": [
"error",
"prefer-double"
],
"no-unused-vars": ["error", { "varsIgnorePattern": "React" }],
"no-shadow": 0,
"react/jsx-uses-vars": [2],
"react/require-default-props": [0],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
]
}
}
}