-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.15 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
{
"name": "access",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/base": "^5.0.0-beta.28",
"@mui/icons-material": "^6.5.0",
"@mui/lab": "^6.0.1-beta.36",
"@mui/material": "^6.5.0",
"@mui/x-data-grid": "^7.29.13",
"@mui/x-date-pickers": "^7.29.4",
"@sentry/react": "^8.34.0",
"@tanstack/react-query": "^5.101.0",
"confetti-cannon": "^2.3.2",
"dayjs": "^1.11.10",
"env-cmd": "^10.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.51.2",
"react-hook-form-mui": "^7.6.2",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.2"
},
"scripts": {
"tsc": "./node_modules/.bin/tsc",
"codegen": "openapi-codegen gen api",
"start": "vite",
"build": "env-cmd -f .env.production vite build",
"preview": "vite preview",
"test": "vitest",
"prepare": "husky install"
},
"engines": {
"node": ">=22.12.0",
"npm": ">=11.16.0"
},
"allowScripts": {
"@sentry/cli": true,
"@swc/core": true,
"esbuild": true,
"fsevents": true
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@openapi-codegen/cli": "^3.1.0",
"@openapi-codegen/typescript": "^11.1.0",
"@sentry/vite-plugin": "^4.0.2",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^24.2.0",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@vitejs/plugin-react": "^6.1.0",
"@vitest/ui": "^4.1.8",
"husky": "^8.0.3",
"jsdom": "^26.1.0",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"typescript": "^4.9.5",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "prettier --write"
},
"overrides": {
"esbuild": "^0.28.1",
"uuid": "^14.0.2"
}
}