-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.08 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
{
"name": "knightbot",
"description": "Admin dashboard template built with Astro, shadcn/ui, and Cloudflare's developer stack",
"private": true,
"cloudflare": {
"label": "SaaS Admin Template",
"products": [
"Workers",
"D1"
],
"categories": [],
"docs_url": "https://developers.cloudflare.com/workers/",
"preview_icon_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/c2a0b13a-8cd1-464a-561b-3a7371c7c700/public",
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/661a4884-fb10-4867-7b4e-b72763d12100/preview",
"publish": true
},
"dependencies": {
"@astrojs/cloudflare": "12.6.0",
"@astrojs/react": "4.3.0",
"@astrojs/tailwind": "6.0.2",
"@hookform/resolvers": "5.1.1",
"@radix-ui/react-accordion": "1.2.7",
"@radix-ui/react-dialog": "1.1.10",
"@radix-ui/react-label": "2.1.4",
"@radix-ui/react-navigation-menu": "1.2.9",
"@radix-ui/react-slot": "1.2.0",
"@tanstack/react-table": "8.21.3",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"astro": "5.10.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.525.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.58.1",
"tailwind-merge": "3.3.1",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "1.0.7",
"zod": "3.25.67"
},
"devDependencies": {
"wrangler": "4.21.x"
},
"scripts": {
"astro": "astro",
"build": "astro build",
"cf-typegen": "wrangler types",
"check": "npm run build && npm run wrangler:wrapper && wrangler deploy --dry-run",
"db:migrate": "wrangler d1 migrations apply DB --local",
"db:migrate:remote": "wrangler d1 migrations apply DB --remote",
"deploy": "npm run wrangler:wrapper && wrangler deploy",
"dev": "npm run db:migrate && npm run build && npm run wrangler:wrapper && npx wrangler dev --port 4321",
"predeploy": "npm run db:migrate:remote",
"preview": "npm run build && npm run wrangler:wrapper && wrangler dev",
"wrangler:wrapper": "cp src/workflows/wrapper.js dist/index.js"
}
}