-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.93 KB
/
package.json
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
{
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"deploy": "react-router build && NODE_ENV=production wrangler deploy",
"deploy:version": "react-router build && wrangler versions upload",
"deploy:promote": "wrangler versions deploy",
"start": "wrangler dev --test-scheduled",
"typecheck": "tsc",
"typegen": "wrangler types && react-router typegen",
"check": "biome check .",
"check:fix": "biome check --fix .",
"db:drop": "drizzle-kit drop",
"db:generate": "drizzle-kit generate",
"db:apply": "wrangler d1 migrations apply DB --local",
"db:apply-prod": "wrangler d1 migrations apply DB --remote"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@react-router/cloudflare": "^7.2.0",
"better-auth": "^1.1.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "~0.40.0",
"isbot": "^5.1.17",
"lucide-react": "^0.479.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.2.0",
"session-context": "^0.0.6",
"sonner": "^1.7.1",
"spin-delay": "^2.0.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.6"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/workers-types": "^4.20241230.0",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.8.0",
"@react-router/dev": "^7.2.0",
"@tailwindcss/vite": "^4.0.10",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.2",
"drizzle-kit": "~0.30.4",
"lefthook": "^1.11.3",
"tailwindcss": "^4.0.10",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^3.112.0"
}
}