-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
80 lines (80 loc) · 2.25 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
{
"name": "xiaojun.im",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p next-dev watch-content",
"next-dev": "next dev -p 3456",
"build": "next build",
"start": "next start",
"new:post": "node ./scripts/new-post",
"lint": "next lint",
"lint:staged": "lint-staged",
"prettier": "prettier --write './src/**/*.{js,jsx,ts,tsx,json}'",
"watch-content": "node ./scripts/watcher.js"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.13.10",
"@codesandbox/sandpack-themes": "^2.0.21",
"@react-spring/web": "^9.7.3",
"@types/color": "^3.0.6",
"@upstash/ratelimit": "^1.1.3",
"@upstash/redis": "^1.31.2",
"@vercel/speed-insights": "^1.0.11",
"acorn": "^8.11.3",
"acorn-jsx": "^5.3.2",
"clsx": "^2.1.1",
"color": "^4.2.3",
"dayjs": "^1.11.11",
"esbuild": "^0.21.4",
"fast-glob": "^3.3.2",
"fetch-site-metadata": "^0.2.0",
"gray-matter": "^4.0.3",
"hast-util-to-html": "^8.0.4",
"hastscript": "^7.2.0",
"mdx-bundler": "^9.2.1",
"next": "^14.1.4",
"next-themes": "^0.3.0",
"nextjs-toploader": "^1.6.12",
"plaiceholder": "^3.0.0",
"prism-react-renderer": "^1.3.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-inspector": "^6.0.2",
"react-simple-code-editor": "^0.13.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-katex": "^6.0.3",
"rehype-slug": "^5.1.0",
"remark-directive": "^2.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-reading-time": "^2.0.1",
"remark-unwrap-images": "^3.0.1",
"rss": "^1.2.2",
"rxjs": "^7.8.1",
"sharp": "^0.33.4",
"sucrase": "^3.35.0",
"unist-util-visit": "^4.1.2",
"use-sound": "^4.0.1"
},
"devDependencies": {
"@plaiceholder/next": "^3.0.0",
"@types/node": "20.12.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/rss": "^0.0.32",
"autoprefixer": "10.4.19",
"chokidar": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"npm-run-all": "^4.1.5",
"postcss": "8.4.38",
"prettier": "^2.8.8",
"sass": "^1.77.2",
"tailwindcss": "3.4.3",
"typescript": "5.4.5",
"ws": "^8.17.0"
}
}