-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 6.25 KB
/
Copy pathpackage.json
File metadata and controls
154 lines (154 loc) · 6.25 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "cloudflare-fullstack-starter",
"description": "SaaS-ready fullstack template: React + Vite + Hono + Cloudflare Workers + D1 + Better Auth + shadcn/ui",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=22.15.0 <23"
},
"cloudflare": {
"label": "Cloudflare Fullstack SaaS Starter",
"products": [
"Workers"
],
"categories": [],
"icon_urls": [
"https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/5ca0ca32-e897-4699-d4c1-6b680512f000/public"
],
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/fc7b4b62-442b-4769-641b-ad4422d74300/public",
"publish": true
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:preview": "tsc -b && vite build --mode preview",
"build:production": "tsc -b && vite build --mode production",
"preview": "npm run build && vite preview",
"lint": "eslint .",
"check": "tsc -b && vite build && wrangler deploy --dry-run",
"sync-secrets": "tsx bin/sync-secrets.ts",
"deploy": "wrangler deploy",
"deploy:preview": "tsx bin/sync-secrets.ts preview && npm run build:preview && wrangler deploy",
"deploy:production": "tsx bin/sync-secrets.ts production && npm run build:production && wrangler deploy",
"tail:preview": "wrangler tail --env preview",
"tail:production": "wrangler tail --env production",
"cf-typegen": "wrangler types",
"db": "tsx bin/db.ts",
"db:backups": "tsx bin/db.ts backups --env local",
"db:backups:preview": "tsx bin/db.ts backups --env preview",
"db:backups:production": "tsx bin/db.ts backups --env production",
"db:backups:clean": "tsx bin/db.ts backups clean --env local",
"db:backups:clean:preview": "tsx bin/db.ts backups clean --env preview",
"db:backups:clean:production": "tsx bin/db.ts backups clean --env production",
"db:migrate": "tsx bin/db.ts migrate --env local",
"db:migrate:preview": "tsx bin/db.ts migrate --env preview",
"db:migrate:production": "tsx bin/db.ts migrate --env production",
"db:migrate:safe": "tsx bin/db.ts migrate --env local --safe",
"db:migrate:preview:safe": "tsx bin/db.ts migrate --env preview --safe",
"db:migrate:production:safe": "tsx bin/db.ts migrate --env production --safe",
"db:migrations:list": "tsx bin/db.ts migrations-list --env local",
"db:migrations:list:preview": "tsx bin/db.ts migrations-list --env preview",
"db:migrations:list:production": "tsx bin/db.ts migrations-list --env production",
"db:migrations:list:all": "npm run db:migrations:list && npm run db:migrations:list:preview && npm run db:migrations:list:production",
"db:backup": "tsx bin/db.ts backup --env local",
"db:backup:preview": "tsx bin/db.ts backup --env preview",
"db:backup:production": "tsx bin/db.ts backup --env production",
"db:backup:all": "npm run db:backup && npm run db:backup:preview && npm run db:backup:production",
"db:restore": "tsx bin/db.ts restore --env local",
"db:restore:latest": "tsx bin/db.ts restore --env local --latest",
"db:restore:preview": "tsx bin/db.ts restore --env preview",
"db:restore:production": "tsx bin/db.ts restore --env production",
"db:time-travel": "tsx bin/db.ts time-travel",
"db:time-travel:info": "tsx bin/db.ts time-travel info",
"db:time-travel:restore": "tsx bin/db.ts time-travel restore",
"db:seed": "tsx bin/db.ts seed --env local",
"db:seed:preview": "tsx bin/db.ts seed --env preview",
"db:seed:production": "tsx bin/db.ts seed --env production",
"init": "tsx bin/init.ts",
"auth": "tsx bin/auth.ts"
},
"bin": {
"init": "./bin/init",
"auth": "./bin/auth",
"db": "./bin/db"
},
"dependencies": {
"@hookform/resolvers": "^5.2.1",
"@opentelemetry/api": "^1.9.1",
"@radix-ui/react-accordion": "^1.2.15",
"@radix-ui/react-alert-dialog": "^1.1.18",
"@radix-ui/react-aspect-ratio": "^1.1.11",
"@radix-ui/react-avatar": "^1.2.1",
"@radix-ui/react-checkbox": "^1.3.6",
"@radix-ui/react-collapsible": "^1.1.15",
"@radix-ui/react-context-menu": "^2.3.2",
"@radix-ui/react-dialog": "^1.1.18",
"@radix-ui/react-dropdown-menu": "^2.1.19",
"@radix-ui/react-hover-card": "^1.1.18",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-menubar": "^1.1.19",
"@radix-ui/react-navigation-menu": "^1.2.17",
"@radix-ui/react-popover": "^1.1.18",
"@radix-ui/react-progress": "^1.1.11",
"@radix-ui/react-radio-group": "^1.4.2",
"@radix-ui/react-scroll-area": "^1.2.13",
"@radix-ui/react-select": "^2.3.2",
"@radix-ui/react-separator": "^1.1.11",
"@radix-ui/react-slider": "^1.4.2",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.2",
"@radix-ui/react-tabs": "^1.1.16",
"@radix-ui/react-toast": "^1.2.18",
"@radix-ui/react-toggle": "^1.1.13",
"@radix-ui/react-toggle-group": "^1.1.14",
"@radix-ui/react-tooltip": "^1.2.11",
"@tanstack/react-table": "^8.21.3",
"bcryptjs": "^3.0.3",
"better-auth": "^1.6.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"commander": "^15.0.0",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"hono": "^4.12.27",
"input-otp": "^1.4.2",
"kysely": "^0.29.2",
"kysely-d1": "^0.4.0",
"lucide-react": "^1.23.0",
"next-themes": "^0.4.6",
"react": "19.2.7",
"react-day-picker": "^10.0.1",
"react-dom": "19.2.7",
"react-hook-form": "^7.80.0",
"react-resizable-panels": "^4.12.0",
"react-router-dom": "^7.18.1",
"recharts": "^3.9.1",
"resend": "^6.17.0",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"tsx": "^4.23.0",
"vaul": "^1.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.43.0",
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^26.1.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"postcss": "^8.5.16",
"tailwindcss": "^4.3.2",
"tw-animate-css": "^1.4.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.3",
"wrangler": "^4.107.0"
}
}