-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"name": "vite-react-template",
"description": "A template for building a React application with Vite, Hono, and Cloudflare Workers",
"private": true,
"cloudflare": {
"label": "Vite React Template",
"products": [
"Workers"
],
"categories": [],
"preview_icon_url": "https://avatars.githubusercontent.com/u/16927633?s=48&v=4",
"preview_image_url": "https://avatars.githubusercontent.com/u/16927633?s=48&v=4",
"publish": true
},
"dependencies": {
"@heroui/react": "^2.8.5",
"@heroui/theme": "^2.4.23",
"autoprefixer": "^10.4.21",
"framer-motion": "^12.23.24",
"hono": "4.8.2",
"postcss": "^8.5.6",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.7.5",
"@eslint/js": "9.29.0",
"@tailwindcss/vite": "^4.1.16",
"@types/node": "^24.0.4",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vitejs/plugin-react": "5.0.0",
"eslint": "9.27.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"globals": "16.2.0",
"tailwindcss": "^4.1.16",
"typescript": "5.8.3",
"typescript-eslint": "8.35.0",
"vite": "^6.0.0",
"wrangler": "^4.45.1"
},
"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"
}