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{
"name": "random-issue",
"type": "module",
"private": true,
"packageManager": "pnpm@10.10.0",
"scripts": {
"build": "vite build && vite build --ssr",
"deploy": "$npm_execpath run build && wrangler deploy dist-server/index.js",
"dev": "vite",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "simple-git-hooks",
"preview": "wrangler dev dist-server/index.js"
},
"dependencies": {
"@hono/react-renderer": "^1.0.1",
"hono": "^4.7.8",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"unstorage": "^1.16.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250506.0",
"@egoist/tailwindcss-icons": "^1.9.0",
"@iconify-json/mingcute": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.33",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"eslint": "^9.26.0",
"eslint-config-hyoban": "^4.0.6",
"hono-vite-react-stack": "^0.1.4",
"lint-staged": "^15.5.1",
"simple-git-hooks": "^2.13.0",
"tailwindcss": "^4.1.5",
"vite": "^6.3.5",
"wrangler": "^4.14.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}