-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "honox-blog-templete",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --mode client && vite build",
"preview": "wrangler pages dev ./dist",
"deploy": "$npm_execpath run build && wrangler pages deploy ./dist",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome check --apply .",
"check": "biome check --apply .",
"check:ci": "biome ci .",
"typecheck": "tsc -p . --noEmit",
"create:post": "node ./app/libs/posts/generate-post.mjs"
},
"dependencies": {
"@mdx-js/rollup": "^3.0.1",
"highlight.js": "^11.9.0",
"hono": "^4.0.9",
"honox": "^0.1.9",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@cloudflare/workers-types": "^4.20240222.0",
"@hono/vite-cloudflare-pages": "^0.4.0",
"@hono/vite-ssg": "^0.1.0",
"autoprefixer": "^10.4.18",
"postcss": "^8.4.35",
"rehype-highlight": "^7.0.0",
"tailwindcss": "^3.4.1",
"vite": "^5.1.5",
"wrangler": "^3.31.0"
}
}