-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.81 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
{
"name": "cmueats",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start-build:dev": "vite preview --host",
"dev": "vite --host",
"build": "tsc && vite build",
"typecheck": "tsc",
"test": "dotenv -e .env.test -- vitest --coverage",
"eject": "vite eject",
"lint": "oxlint src",
"lint:fix": "oxlint src --fix",
"format": "oxfmt --write src",
"format:check": "oxfmt --check src",
"coverage": "pnpm vitest --coverage",
"api-update": "pnpm openapi-typescript api.yaml -o src/types/api.d.ts"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@million/lint": "latest",
"@mui/icons-material": "^5.18.0",
"@mui/material": "^5.18.0",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.91.1",
"@testing-library/user-event": "^14.6.1",
"@types/material-ui": "^0.21.18",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"css-loader": "^6.11.0",
"fuse.js": "^7.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.546.0",
"luxon": "^3.7.2",
"mapkit-react": "^1.16.1",
"million": "latest",
"motion": "^12.23.26",
"netlify-plugin-mapkitjs-token": "^1.2.0",
"openapi-fetch": "^0.15.0",
"openapi-react-query": "^0.5.1",
"posthog-js": "^1.309.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.0.0",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^6.30.2",
"react-transition-group": "^4.4.5",
"serve": "^14.2.5",
"vitest": "^4.0.16",
"web-vitals": "^3.5.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.12.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/luxon": "^3.7.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-transition-group": "^4.4.12",
"@vitejs/plugin-react": "^4.7.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/coverage-v8": "^4.0.16",
"dotenv-cli": "^10.0.0",
"global-jsdom": "^27.0.0",
"jsdom": "^27.4.0",
"openapi-typescript": "^7.10.1",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.19.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-pwa": "^0.19.8",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^4.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "pnpm@10.18.0"
}