-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.81 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
{
"name": "vite-react-template",
"description": "A template for building a React application with Vite, Hono, and Cloudflare Workers",
"private": true,
"type": "module",
"scripts": {
"vite-dev": "vite dev",
"vite-build": "tsc -b && vite build",
"vite-preview": "npm run vite-build && vite preview",
"wrangler-types": "wrangler types",
"wrangler-deploy-dry": "tsc && vite build && wrangler deploy --dry-run",
"wrangler-deploy": "tsc && vite build && wrangler deploy",
"wrangler-version": "wrangler --version",
"biome-lint": "npx @biomejs/biome lint",
"biome-lint-fix": "npx @biomejs/biome lint --write",
"biome-format": "npx @biomejs/biome format",
"biome-format-fix": "npx @biomejs/biome format --write",
"biome-check": "npx @biomejs/biome check",
"biome-check-fix": "npx @biomejs/biome check --write",
"biome-migrate-eslint": "npx @biomejs/biome migrate eslint --write"
},
"cloudflare": {
"label": "Vite React Template",
"products": [
"Workers"
],
"categories": [],
"icon_urls": [
"https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/5ca0ca32-e897-4699-d4c1-6b680512f000/public"
],
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/fc7b4b62-442b-4769-641b-ad4422d74300/public",
"publish": true
},
"dependencies": {
"hono": "^4.11.4",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@cloudflare/vite-plugin": "^1.12.3",
"@eslint/js": "^9.38.0",
"@types/node": "^25.0.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.27.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.1.11",
"wrangler": "^4.59.2"
}
}