-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
82 lines (82 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "zero",
"version": "2.0.0",
"private": true,
"description": "文心雕龙",
"author": "蝉時雨 <chanshiyucx@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"predev": "node syncBlog.mjs",
"prebuild": "node syncBlog.mjs",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,json,md}": [
"prettier --write"
]
},
"dependencies": {
"@next/bundle-analyzer": "^15.1.6",
"@phosphor-icons/react": "^2.1.7",
"@t3-oss/env-nextjs": "^0.12.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"color": "^4.2.3",
"date-fns": "^4.1.0",
"feed": "^4.2.2",
"github-slugger": "^2.0.0",
"image-size": "^1.2.0",
"motion": "^12.1.0",
"next": "^15.1.6",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-photo-view": "^1.2.7",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-rehype": "^11.1.1",
"typed.js": "^2.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@content-collections/core": "^0.8.0",
"@content-collections/mdx": "^0.2.0",
"@content-collections/next": "^0.2.4",
"@eslint/eslintrc": "^3.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@tailwindcss/postcss": "^4.0.3",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"eslint": "^9.19.0",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.3",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-animated": "^2.0.0",
"typescript": "^5.7.3"
}
}