-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
87 lines (87 loc) · 2.09 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
78
79
80
81
82
83
84
85
86
87
{
"name": "habit-tracker",
"version": "1.0.0-alpha.3",
"private": true,
"dependencies": {
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@hookform/resolvers": "^1.0.0",
"@material-ui/core": "^5.0.0-alpha.17",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^5.0.0-alpha.17",
"@material-ui/styles": "^4.11.1",
"@nivo/bar": "^0.64.0",
"@nivo/calendar": "^0.64.0",
"@nivo/line": "^0.64.0",
"@nivo/pie": "^0.65.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"camelcase": "^6.2.0",
"clsx": "^1.1.1",
"date-fns": "^2.16.1",
"firebase": "^8.0.0",
"fontsource-roboto": "^3.1.5",
"history": "^5.0.0",
"lodash": "^4.17.20",
"mdi-material-ui": "^6.20.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.0.2",
"react-hook-form": "^6.10.1",
"react-icons": "^4.1.0",
"react-query": "^3.2.0",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "4.0.0",
"react-swipeable-views": "^0.13.9",
"web-vitals": "^0.2.4",
"yup": "^0.29.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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": [
"html",
"text"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@material-ui/codemod": "^5.0.0-alpha.17"
}
}