-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "pz-react-structure-approach",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-scripts": "2.0.3",
"redux": "^4.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:watch": "react-scripts test --watchAll",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app",
"globals": {
"mount": true,
"shallow": true,
"render": true
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"chai": "^4.2.0",
"chai-jest-snapshot": "^2.0.0",
"chai-spies": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "1.14.3",
"prop-types": "^15.6.2",
"react-test-renderer": "^16.5.2",
"redux-actions-assertions": "^1.3.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3"
}
}