-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.33 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
{
"name": "labpoint-frontend",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"dev-host": "vite dev --host --port 3000",
"generate-routes": "tsr generate",
"build": "vite build",
"preview": "vite preview",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"generate:types": "openapi-typescript http://localhost:8080/v1/api-schema -o src/lib/utils/api.ts"
},
"dependencies": {
"@base-ui/react": "latest",
"@date-fns/tz": "latest",
"@faker-js/faker": "latest",
"@fontsource-variable/oxanium": "latest",
"@shadcn/react": "latest",
"@tailwindcss/vite": "latest",
"@tanstack/match-sorter-utils": "latest",
"@tanstack/react-devtools": "latest",
"@tanstack/react-form": "latest",
"@tanstack/react-query": "latest",
"@tanstack/react-query-devtools": "latest",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/react-table": "latest",
"ahooks": "latest",
"class-variance-authority": "latest",
"clsx": "latest",
"cmdk": "latest",
"cn": "latest",
"date-fns": "latest",
"embla-carousel-react": "latest",
"input-otp": "latest",
"lucide-react": "latest",
"next-themes": "latest",
"openapi-fetch": "latest",
"react": "latest",
"react-day-picker": "latest",
"react-dom": "latest",
"react-resizable-panels": "latest",
"recharts": "latest",
"shadcn": "latest",
"sonner": "latest",
"tailwind-merge": "latest",
"tailwindcss": "latest",
"tw-animate-css": "latest",
"vaul": "latest",
"zod": "latest"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@tailwindcss/typography": "latest",
"@tanstack/devtools-vite": "latest",
"@tanstack/router-cli": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"openapi-typescript": "latest",
"typescript": "^6.0.3",
"vite": "latest"
},
"overrides": {
"@types/node": "$@types/node",
"typescript": "$typescript"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}