-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "blog",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build --mode client && vite build",
"preview": "wrangler pages dev ./dist",
"deploy": "NODE_TLS_REJECT_UNAUTHORIZED=0 $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",
"update-rss": "node ./app/libs/posts/rss-parser.mjs"
},
"dependencies": {
"@mdx-js/rollup": "^3.0.1",
"highlight.js": "^11.9.0",
"hono": "^4.5.1",
"honox": "^0.1.23",
"rehype-highlight": "^7.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@cloudflare/workers-types": "^4.20240222.0",
"@hono/vite-cloudflare-pages": "^0.4.0",
"@hono/vite-ssg": "^0.1.0",
"autoprefixer": "^10.4.18",
"hast": "^1.0.0",
"postcss": "^8.4.35",
"rehype": "^13.0.1",
"remark": "^15.0.1",
"tailwindcss": "^3.4.1",
"unist-util-visit": "^5.0.0",
"vite": "^5.1.5",
"wrangler": "^3.57.0"
}
}