-
Notifications
You must be signed in to change notification settings - Fork 32
/
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": "fake-screen",
"version": "1.0.0",
"homepage": "https://screen.now.sh",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test-report": "yarn test --watch --coverage",
"eject": "react-scripts eject",
"now-build": "react-scripts build"
},
"dependencies": {
"react": "^16.8.0-alpha.0",
"react-dom": "^16.8.0-alpha.0",
"react-ga": "^2.5.7",
"react-router-dom": "^4.4.0-beta.6",
"react-scripts": "2.1.3",
"react-use": "^5.2.1",
"smoothscroll-polyfill": "^0.4.3",
"styled-components": "^4.1.3"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"jest-extended": "^0.11.0",
"react-testing-library": "^5.4.4"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/index.js",
"!src/serviceWorker.js",
"!src/assets/*",
"!src/components/index.js",
"!src/themes/index.js",
"!src/hooks/useNoScale.js",
"!src/components/GoogleAnalytics/index.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"text"
]
}
}