-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.54 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.54 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "cycle-project",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@hookform/error-message": "^2.0.0",
"@hookform/resolvers": "^2.9.10",
"@mui/icons-material": "^5.10.6",
"@mui/lab": "5.0.0-alpha.100",
"@mui/material": "^5.10.8",
"@mui/x-data-grid": "5.10.0",
"@mui/x-date-pickers": "^5.0.6",
"@tanstack/react-query": "4.12.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"firebase": "^9.11.0",
"immer": "^9.0.15",
"lodash-es": "^4.17.21",
"notistack": "^2.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.37.0",
"react-hook-form-mui": "^5.7.2",
"react-router-dom": "6.3.0",
"react-scripts": "5.0.1",
"typescript": "^4.8.4",
"use-immer": "^0.7.0",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"deploy": "npm run build && firebase deploy --only hosting",
"deploy-functions": "firebase deploy --only functions"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"plugins": [
"prettier"
],
"rules": {
"quotes": [
"error",
"double"
],
"prettier/prettier": "error",
"arrow-body-style": [
"error",
"as-needed"
],
"no-unused-expressions": "off",
"import/no-extraneous-dependencies": 0,
"no-console": "error",
"complexity": [
"error",
10
],
"max-depth": [
"error",
{
"max": 10
}
],
"max-params": [
"error",
3
],
"max-statements": [
"error",
10
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/jest": "^27.5.2",
"@types/lodash-es": "^4.17.6",
"@types/node": "^16.11.64",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/yup": "^0.32.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0"
}
}