-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.27 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
{
"name": "web-template",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@10.34.5",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "vite",
"build": "pnpm run generate-routes && tsc -b && vite build",
"generate-api": "orval",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"generate-routes": "tsr generate",
"watch-routes": "tsr watch",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-slot": "^1.3.3",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-router": "^1.170.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ky": "^2.0.2",
"lucide-react": "^1.27.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-query-devtools": "^5.101.4",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/router-cli": "^1.167.21",
"@tanstack/router-plugin": "^1.168.23",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.8.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"msw": "^2.15.0",
"orval": "^8.23.0",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.7.4",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": "prettier --write"
}
}