-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "blog",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "waku dev",
"build": "waku build && pnpm gen:rss",
"start": "waku start",
"gen:rss": "node ./scripts/gen-rss.mjs",
"prepare": "husky"
},
"dependencies": {
"@shikijs/rehype": "^1.2.2",
"lodash-es": "^4.17.21",
"lucide-react": "^0.379.0",
"next-mdx-remote": "^4.4.1",
"react": "19.0.0-beta-e7d213dfb0-20240507",
"react-dom": "19.0.0-beta-e7d213dfb0-20240507",
"react-server-dom-webpack": "19.0.0-beta-e7d213dfb0-20240507",
"rehype-katex": "^7.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-math": "^5.0.0",
"shiki": "^1.2.2",
"waku": "0.20.2",
"yaml": "^2.4.1"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/dom-view-transitions": "^1.0.4",
"@types/lodash-es": "^4.17.12",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"autoprefixer": "10.4.17",
"feed": "^4.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
},
"lint-staged": {
"*.{mjs,js,jsx,mts,ts,tsx,css,json,md}": "pnpm biome check --apply"
},
"packageManager": "[email protected]"
}