-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"name": "better-cloud",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"build": "vite build",
"clean": "rm -rf ./node_modules/.vite",
"preview": "bun run build && vite preview",
"typecheck": "tsc --noEmit",
"a:dev": "bun alchemy dev --env-file .env.dev",
"a:deploy": "bun alchemy deploy --env-file .env.prod",
"check": "biome check --write src --verbose",
"check:unsafe": "biome check --write src --unsafe --verbose",
"db:push": "drizzle-kit push",
"db:studio": "DB_STAGE=dev drizzle-kit studio",
"db:studio:prod": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@biomejs/biome": "2.2.3",
"@hono/trpc-server": "^0.4.0",
"@hono/zod-validator": "^0.7.2",
"@libsql/client": "^0.15.14",
"@react-email/render": "^1.2.2",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/react-form": "^1.19.3",
"@tanstack/react-query": "^5.87.1",
"@tanstack/react-router": "^1.131.35",
"@trpc/client": "^11.5.1",
"@trpc/server": "^11.5.1",
"@trpc/tanstack-react-query": "^11.5.1",
"alchemy": "^0.64.0",
"better-auth": "1.3.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.2",
"drizzle-orm": "^0.44.5",
"hono": "4.9.6",
"input-otp": "^1.4.2",
"lucide-react": "^0.542.0",
"radix-ui": "^1.4.3",
"react": "19.1.1",
"react-dom": "19.1.1",
"resend": "^6.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"zod": "^4.1.5"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250906.0",
"@tanstack/react-query-devtools": "^5.87.1",
"@tanstack/react-router-devtools": "^1.131.35",
"@tanstack/router-plugin": "^1.131.35",
"@types/node": "^24.3.1",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"@vitejs/plugin-react": "5.0.2",
"drizzle-kit": "^0.31.4",
"globals": "16.3.0",
"tw-animate-css": "^1.3.8",
"typescript": "5.9.2",
"vite": "7.1.4",
"wrangler": "^4.34.0"
},
"packageManager": "bun@1.2.21"
}