forked from chanshiyucx/zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.05 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
{
"name": "zero",
"version": "1.0.0",
"private": true,
"description": "文心雕龙",
"author": "蝉時雨 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,json,md}": [
"prettier --write"
]
},
"dependencies": {
"aos": "^2.3.4",
"clsx": "^2.1.0",
"color": "^4.2.3",
"contentlayer": "^0.3.4",
"date-fns": "^3.4.0",
"image-size": "^1.1.1",
"lucide-react": "^0.357.0",
"next": "^13.5.6",
"next-contentlayer": "^0.3.4",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-photo-view": "^1.2.4",
"typed.js": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@contentlayer/source-files": "^0.3.4",
"@giscus/react": "^2.3.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.10",
"@types/aos": "^3.0.4",
"@types/color": "^3.0.6",
"@types/node": "^20.11.27",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.49.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.29",
"postcss-import": "^16.0.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"rehype-external-links": "^3.0.0",
"rehype-pretty-code": "^0.10.1",
"remark-gfm": "^3.0.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
}