-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.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
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
{
"name": "vite-react-template",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "bun@1.3.4",
"scripts": {
"dev": "bun run --bun vite",
"server": "bun --watch server/index.ts",
"build": "bun run --bun tsc && bun run --bun vite build",
"test": "bun run --bun vitest && bun test ./tests/**/*.bun.test.ts",
"preview": "bun run --bun vite preview",
"ci": "turbo run lint test build",
"start": "turbo run dev server",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "biome ci .",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@base-ui/react": "^1.4.0",
"@elysiajs/cors": "^1.4.1",
"@elysiajs/eden": "^1.4.9",
"@fontsource-variable/inter": "^5.2.8",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.99.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.45.2",
"elysia": "^1.4.28",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.38.0",
"input-otp": "^1.4.2",
"lucide-react": "^1.8.0",
"react": "19.2.5",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.5",
"react-error-boundary": "^6.1.1",
"react-resizable-panels": "^4.10.0",
"react-router-dom": "^7.14.1",
"recharts": "3.8.1",
"shadcn": "^4.2.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@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/bun": "^1.3.12",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"drizzle-kit": "^0.31.10",
"jsdom": "^29.0.2",
"turbo": "^2.9.6",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.4"
}
}