-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "create-bv-pages",
"version": "1.0.0",
"type": "module",
"description": "Create a new project combination of bun, vite for cloudflare pages project",
"main": "index.ts",
"scripts": {
"dev": "vite",
"build": "vite build && vite build --ssr",
"preview": "wrangler pages dev",
"upload": "wrangler pages deploy --branch preview",
"clean": "rm -rf dist node_modules && pnpm i --prefer-offline"
},
"dependencies": {
"@auth/core": "0.34.1",
"clsx": "^2.1.1",
"hono": "^4.5.6"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240620.0",
"@hono/vite-dev-server": "^0.15.1",
"@iconify-json/ri": "^1.1.21",
"@iconify/tailwind": "^1.1.1",
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.4",
"vite": "5.3.2",
"wrangler": "3.62.0"
},
"pnpm": {
"overrides": {
"esbuild": "0.21.5"
},
"patchedDependencies": {
"@auth/core@0.34.1": "patches/@auth__core@0.34.1.patch",
"wrangler@3.62.0": "patches/wrangler@3.62.0.patch"
}
}
}