-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "xiaowei-hua-blog",
"version": "0.1.0",
"private": false,
"description": "Personal research blog powered by Next.js 16 with editorial design — warm cream palette, Obsidian callouts, KaTeX math, and Mermaid diagrams",
"keywords": [
"nextjs",
"blog",
"typescript",
"react",
"markdown",
"katex",
"mermaid",
"editorial-design"
],
"repository": {
"type": "git",
"url": "https://github.com/Will-Hxw/xiaowei-hua-blog"
},
"homepage": "https://github.com/Will-Hxw/xiaowei-hua-blog#readme",
"author": "Will_Hxw <xiaoweihua.beijing@gmail.com>",
"scripts": {
"dev": "next dev",
"build": "next build",
"fonts:subset": "node scripts/subset-fonts.mjs",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"jszip": "^3.10.1",
"katex": "^0.16.44",
"mermaid": "^10.9.5",
"next": "16.2.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"jsdom": "^29.0.1",
"subset-font": "^2.5.0",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.2"
}
}