-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 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
{
"name": "blasterworld",
"description": "A template for building a React application with Vite, Hono, and Cloudflare Workers",
"cloudflare": {
"label": "Vite React Template",
"products": [
"Workers"
],
"categories": [],
"preview_icon_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/532a5378-9717-4964-385b-5fafd2160200/public",
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/ec7f4be5-d1d6-4e94-0851-126341745400/preview",
"publish": true
},
"dependencies": {
"@prisma/adapter-d1": "^7.8.0",
"@prisma/client": "^7.8.0",
"@tailwindcss/vite": "^4.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"antd": "^6.4.0",
"better-auth": "^1.6.11",
"hono": "^4.12.18",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.15.0",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.36.3",
"@vitejs/plugin-react": "^6.0.1",
"prisma": "^7.8.0",
"typescript": "^6.0.3",
"vite": "^8.0.12"
},
"private": true,
"scripts": {
"build": "tsc -b && vite build",
"cf-typegen": "wrangler types",
"check": "tsc && vite build && wrangler deploy --dry-run",
"deploy": "wrangler deploy",
"dev": "vite",
"lint": "eslint .",
"preview": "npm run build && vite preview"
},
"type": "module"
}