-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.46 KB
/
package.json
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": "cf-next-hono",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint ./src",
"pages:deploy": "wrangler pages deploy .vercel/output/static --project-name cf-next-hono",
"api:deploy": "wrangler deploy --minify --name cf-next-hono src/app/api/[[...route]]/route.ts",
"cf:build": "bun run lint && bunx @cloudflare/next-on-pages",
"cf:preview": "bun run cf:build && bunx wrangler pages dev .vercel/output/static",
"cf:deploy": "bun run cf:build && bun run api:deploy && bun run pages:deploy"
},
"dependencies": {
"@hono/zod-openapi": "^0.10.0",
"@hono/zod-validator": "^0.2.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"hono": "^4.2.3",
"next": "14.1.4",
"react": "^18",
"react-dom": "^18",
"superjson": "^2.2.1",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4",
"zod-error": "^1.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@cloudflare/next-on-pages": "^1.11.0",
"@cloudflare/workers-types": "^4.20240405.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"vercel": "^33.7.0",
"wrangler": "^3.48.0"
}
}