-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.38 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "suzu-blog",
"version": "0.1.0",
"private": true,
"author": {
"name": "ZL Asica",
"email": "[email protected]",
"url": "https://github.com/ZL-Asica/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZL-Asica/SuzuBlog.git"
},
"bugs": "https://github.com/ZL-Asica/SuzuBlog/issues",
"homepage": "https://github.com/ZL-Asica/SuzuBlog",
"funding": "https://github.com/sponsors/ZL-Asica",
"scripts": {
"dev": "next dev --turbopack",
"build": "NODE_NO_WARNINGS=1 next build",
"start": "next start",
"format": "prettier --write .",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"@zl-asica/react": "^0.3.10",
"clsx": "^2.1.1",
"es-toolkit": "^1.29.0",
"gray-matter": "^4.0.3",
"katex": "^0.16.15",
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.6.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"slugify": "^1.6.6",
"twikoo": "^1.6.40",
"yaml": "^2.6.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.1.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@zl-asica/prettier-config": "^1.0.9",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"eslint": "^9.16.0",
"eslint-config-zl-asica": "^1.0.20",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rss": "^1.2.2",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{css,json,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.5%",
"last 2 versions",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}