-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) 路 1.21 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) 路 1.21 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
{
"name": "niexia.github.io",
"description": "A personal website built with Next.js and MDX",
"keywords": [
"nextjs",
"mdx",
"personal website",
"blog"
],
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "npm run gen:posts && next dev --turbopack",
"build": "npm run gen:posts && next build",
"build:ssg": "npm run gen:posts && SSG=true next build",
"start": "next start",
"lint": "next lint",
"gen:posts": "node scripts/gen-all-posts.js && node scripts/gen-rss.js"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.4",
"@types/mdx": "^2.0.13",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"next": "15.3.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remixicon": "^4.6.0",
"sugar-high": "^0.9.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"chokidar": "^4.0.3",
"concurrently": "^9.2.0",
"date-fns": "^4.1.0",
"eslint": "^9",
"eslint-config-next": "15.3.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}