-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "example-react-project",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.5",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --verbose",
"test:windows": "set CI=true && react-scripts test --verbose",
"eject": "react-scripts eject",
"lint:eslint": "eslint .",
"flow": "flow",
"coverage": "yarn run test -- --coverage"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "^0.94.0",
"prettier": "^1.16.4",
"redux-mock-store": "^1.5.3",
"sinon": "^7.2.7"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/src/index.js",
"!<rootDir>/src/configureStore.js",
"!<rootDir>/src/serviceWorker.js",
"!<rootDir>/src/setupTests.js"
]
}
}