forked from onoufriosm/redux-setup-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.73 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "redux-setup-guide",
"version": "0.2.0",
"description": "Guide on how to setup Redux for a react application. Once it's set up, adding new entities in the system and making api calls becomes a breeze.",
"license": "MIT",
"author": "Onoufrios Malikkides",
"keywords": [
"redux",
"react",
"state",
"guide"
],
"dependencies": {
"antd": "^3.11.2",
"axios": "^0.18.0",
"axios-mock-adapter": "^1.15.0",
"babel-plugin-module-resolver": "^3.1.3",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"lodash": "^4.17.11",
"normalizr": "^3.3.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"react-scripts": "2.1.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"uuid": "^3.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"env": {
"jest": true
},
"extends": "airbnb",
"rules": {
"react/prop-types": false,
"react/jsx-filename-extension": false,
"import/no-cycle": false,
"jsx-quotes": [
2,
"prefer-single"
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"babel": {
"plugins": [
[
"babel-plugin-module-resolver",
{
"root": [
"./"
],
"alias": {
"src": "./src"
}
}
]
]
}
}