-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 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
{
"name": "whim",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bunx --bun vite dev",
"build": "bun lint && bunx --bun vite build",
"start": "bun run .output/server/index.mjs",
"lint": "bunx --bun eslint . --cache --cache-location .eslintcache --max-warnings 0",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun --bun run drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"devDependencies": {
"@tanstack/eslint-config": "^0.3.2",
"@types/bun": "latest",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"drizzle-kit": "^0.31.4",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tw-animate-css": "^1.3.8",
"vite-tsconfig-paths": "^5.1.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@libsql/client": "^0.15.15",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/tanstackstart-react": "^10.13.0",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/react-query": "^5.90.1",
"@tanstack/react-router": "^1.131.50",
"@tanstack/react-router-ssr-query": "^1.132.6",
"@tanstack/react-start": "^1.131.50",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.5",
"drizzle-query-logger": "^1.1.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.544.0",
"nanoid": "^5.1.6",
"neverthrow": "^8.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.63.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"vaul": "^1.1.2",
"vite": "^7.1.7",
"zod": "^4.1.11"
}
}