-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
27 lines (27 loc) · 917 Bytes
/
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
{
"type": "module",
"scripts": {
"dev": "concurrently \"npm:preview\" \"npm:watch:vite\" \"npm:watch:css\"",
"watch:vite": "vite build --watch",
"watch:css": "tailwindcss -i src/style.css -o public/static/style.css --watch",
"build": "$npm_execpath run build:css && vite build",
"build:css": "tailwindcss -i src/style.css -o public/static/style.css",
"preview": "wrangler pages dev --live-reload dist",
"deploy": "$npm_execpath run build && wrangler pages deploy dist"
},
"dependencies": {
"eventsource-parser": "^1.1.2",
"hono": "^4.5.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@hono/vite-cloudflare-pages": "^0.2.4",
"@hono/vite-dev-server": "^0.9.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"vite": "^5.0.12",
"wrangler": "^3.65.1"
}
}