-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "worker-template",
"description": "A template for building a React application with Vite, Hono, and Cloudflare Workers",
"cloudflare": {
"label": "Worker Template",
"products": [
"Workers"
],
"categories": [],
"publish": true
},
"dependencies": {
"@hono/vite-build": "^1.9.2",
"@hono/vite-dev-server": "^0.24.1",
"@vitejs/plugin-react-swc": "^4.2.3",
"hono": "4.11.7",
"honox": "^0.1.53",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@swc/core": "^1.15.11",
"@types/node": "^25.2.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"rimraf": "^6.1.2",
"typescript": "5.9.3",
"vite": "^7.3.1",
"wrangler": "^4.61.1"
},
"private": true,
"scripts": {
"build": "tsc -b && vite build",
"cf-typegen": "wrangler types",
"check": "tsc && vite build && wrangler deploy --dry-run",
"clean": "rimraf .wrangler dist",
"deploy": "wrangler deploy",
"dev": "vite"
},
"type": "module",
"packageManager": "yarn@4.12.0"
}