-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"name": "react-mvvm",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"prepare": "husky",
"knip": "knip",
"lint": "tsc --noEmit && pnpm exec biome check .",
"lint:fix": "pnpm exec biome lint --write && pnpm exec biome check --write",
"validate-deps": "npx depcruise src --include-only '^src'",
"analyze-code": "pnpm lint && pnpm knip && pnpm validate-deps"
},
"dependencies": {
"@tanstack/query-core": "^5.90.12",
"@tanstack/react-query": "^5.90.12",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"i18next": "^25.7.2",
"i18next-browser-languagedetector": "^8.2.0",
"jotai": "^2.16.0",
"jotai-tanstack-query": "^0.11.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.4.0",
"react-router": "^7.10.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "2.3.9",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"dependency-cruiser": "^17.3.4",
"husky": "^9.1.7",
"knip": "^5.73.4",
"typescript": "~5.9.3",
"vite": "^7.2.4"
}
}