-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.11 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.11 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "nazha.blog",
"version": "1.0.0",
"description": "nazha's Blog",
"main": "index.js",
"author": "nazha<maxiaoke@outlook.com>",
"license": "MIT",
"keywords": [
"nazha",
"blog",
"next"
],
"scripts": {
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"export": "next export",
"lint": "eslint . --ignore-path ./.gitignore",
"lint:fix": "eslint --fix . --ignore-path ./.gitignore",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc --ignore-path ./.gitignore"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.9.0",
"@codesandbox/sandpack-themes": "^2.0.21",
"@nzha/feed": "5.0.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^1.1.1",
"@vercel/kv": "^0.2.3",
"agentation": "^2.2.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"dayjs": "^1.11.10",
"flowbite": "^2.0.0",
"flowbite-datepicker": "^1.2.2",
"framer-motion": "^9.1.7",
"katex": "^0.16.28",
"light-date": "^1.2.0",
"lucide-react": "^0.287.0",
"mdx-bundler": "^8.1.0",
"next": "^16.1.1",
"next-auth": "^4.24.3",
"next-seo": "^4.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^8.34.0",
"react-ssr-prepass": "^1.5.0",
"react-toggle-dark-mode": "^1.1.1",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-math": "^6.0.0",
"remark-prism": "^1.3.6",
"swr": "^2.2.4",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "16.11.2",
"@types/react": "17.0.31",
"@types/react-dom": "17.0.10",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"autoprefixer": "^10.4.16",
"babel-plugin-import-glob-array": "^0.2.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"esno": "^0.10.1",
"gray-matter": "^4.0.3",
"husky": "7.0.4",
"lint-staged": "11.2.3",
"next-sitemap": "^1.9.12",
"postcss": "^8.4.31",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"tiny-glob": "^0.2.9",
"typescript": "5.2.2"
},
"engines": {
"node": ">=20.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}