forked from rejetto/hfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.58 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
{
"name": "@hfs/admin",
"private": true,
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test-dep": "npm audit --production"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@hfs/mui-grid-form": "*",
"@hfs/shared": "*",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.15",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.15",
"@mui/x-data-grid": "^6.19.11",
"@mui/x-date-pickers": "^6.19.9",
"@mui/x-tree-view": "^6.17.0",
"@gregoranders/csv": "^0.0.13",
"dayjs": "^1.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.1",
"react-simple-code-editor": "^0.13.1",
"react-window": "^1.8.10",
"tssrp6a": "^3.0.0",
"valtio": "^1.13.0",
"immer": "^9.0.21",
"usehooks-ts": "^2.9.5",
"watch-size": "^2.0.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-window": "^1.8.8",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"vite": "^5.4.8"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"*.ts"
],
"rules": {
"no-mixed-operators": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}