-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"name": "cfbridge",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Single-admin multi-project gateway for Cloudflare KV and D1",
"scripts": {
"dev": "pnpm run /dev:api & pnpm run /dev:web",
"/dev:api": "wrangler dev -c wrangler.dev.toml",
"/dev:web": "vite --config web/vite.config.ts",
"dev:api": "wrangler dev -c wrangler.dev.toml",
"dev:web": "vite --config web/vite.config.ts",
"build": "vite build --config web/vite.config.ts",
"deploy": "pnpm build && wrangler deploy",
"typecheck": "tsc --noEmit && tsc --noEmit -p web/tsconfig.json",
"db:migrate:local": "wrangler d1 migrations apply META --local -c wrangler.dev.toml",
"db:migrate:remote": "wrangler d1 migrations apply META --remote"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.0",
"dependencies": {
"@fontsource-variable/geist": "^5.3.0",
"@fontsource-variable/geist-mono": "^5.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"hono": "^4.13.7",
"lucide-react": "^1.41.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.6.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.18.3",
"shadcn": "^4.21.0",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260906.1",
"@tailwindcss/vite": "^4.3.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@vitejs/plugin-react": "^6.1.1",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"wrangler": "^4.129.0"
}
}