-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.38 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
{
"name": "react-redux-thunk",
"version": "0.1.0",
"private": true,
"dependencies": {
"dotenv": "^7.0.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-player": "^1.9.3",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-scripts": "2.1.5",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sendbird": "^3.0.96",
"superagent": "^4.1.0",
"superagent-promise": "^1.1.0",
"toastr": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:watch": "npm test -- --watch",
"doc": "jsdoc -c jsdoc.json README.md src/*",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"eslint-config-google": "^0.12.0",
"eslint-plugin-react": "^7.12.4",
"jsdoc": "^3.5.5",
"redux-devtools-extension": "^2.13.8"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/path/to/dir/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": ["text"]
}
}