-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.15 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.15 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
{
"name": "worker-saas-admin",
"description": "Admin dashboard template built with Astro, shadcn/ui, and Cloudflare's developer stack",
"cloudflare": {
"label": "SaaS Admin Template",
"products": [
"Workers",
"D1"
],
"categories": [],
"icon_urls": [
"https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/c6fc5da3-1e0a-4608-b2f1-9628577ec800/public",
"https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/5ca0ca32-e897-4699-d4c1-6b680512f000/public"
],
"docs_url": "https://developers.cloudflare.com/workers/",
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/0f9ff766-eb55-4eee-1ad6-efeb981fe800/public",
"dash": true
},
"dependencies": {
"@astrojs/cloudflare": "12.5.0",
"@astrojs/react": "4.2.4",
"@astrojs/tailwind": "5.1.4",
"@hookform/resolvers": "3.9.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.7.4",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.503.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "7.56.0",
"tailwind-merge": "2.6.0",
"tailwindcss": "3.4.17",
"tailwindcss-animate": "1.0.7",
"zod": "3.24.3"
},
"devDependencies": {
"wrangler": "4.12.0"
},
"scripts": {
"astro": "astro",
"build": "astro build",
"cf-typegen": "wrangler types",
"check": "astro 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": "astro build && npm run wrangler:wrapper && wrangler deploy",
"dev": "astro build && npm run wrangler:wrapper && npx wrangler dev",
"predeploy": "npm run db:migrate:remote",
"preview": "astro build && npm run wrangler:wrapper && wrangler dev",
"wrangler:wrapper": "cp src/workflows/wrapper.js dist/index.js"
}
}