-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
115 lines (115 loc) · 3.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "nextjs-lexical-blog",
"version": "0.0.0",
"private": true,
"author": {
"name": "Ethan Zhang",
"email": "terminals@outlook.com",
"url": "https://dreams.plus/"
},
"bugs": {
"email": "terminals@outlook.com",
"url": "https://github.com/PrinOrange/nextjs-lexical-blog/issues"
},
"scripts": {
"dev": "next dev",
"dev:turbo": "npx turbo dev",
"build:turbo": "npx turbo build",
"build": "next build",
"start": "next start",
"format": "npx biome format --write . && npx autocorrect --fix",
"lint": "npx biome lint",
"lint:fix": "npx biome lint --fix",
"lint:fix:unsafe": "npx biome lint --fix --unsafe",
"newpost": "bun ./scripts/newpost.ts",
"archive": "bun ./scripts/archive.ts"
},
"dependencies": {
"@giscus/react": "^3.0.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.13",
"@node-rs/jieba": "^1.10.3",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"colors": "^1.4.0",
"highlight.js": "^11.10.0",
"jsdom": "^25.0.1",
"katex": "^0.16.11",
"lodash": "^4.17.21",
"lucide-react": "^0.446.0",
"minisearch": "^7.1.0",
"nanoid": "^5.0.7",
"next": "^14.2.13",
"next-mdx-remote": "^4.4.1",
"next-seo": "^6.6.0",
"next-share": "^0.27.0",
"next-themes": "^0.3.0",
"object-sizeof": "^2.6.5",
"postcss": "^8.4.47",
"prism": "^4.1.2",
"prismjs": "^1.29.0",
"qrcode.react": "^4.0.1",
"react": "18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.3.1",
"react-icons": "^5.3.0",
"react-query": "^3.39.3",
"react-swipeable": "^7.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.1",
"rehype-mathjax": "^6.0.0",
"rehype-preset-minify": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-external-links": "^9.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-prism": "^1.3.6",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"title-case": "^4.3.2",
"typescript": "5.2.2",
"url-join": "^5.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@tailwindcss/typography": "^0.5.15",
"@types/archiver": "^6.0.2",
"@types/inquirer": "^9.0.7",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.9",
"@types/mdx": "^2.0.13",
"@types/node": "^20.16.9",
"@types/react": "^18.3.9",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/remark-prism": "^1.3.7",
"@types/tar": "^6.1.13",
"archiver": "^7.0.1",
"autocorrect-node": "^2.11.1",
"bun": "^1.1.29",
"feed": "^4.2.2",
"inquirer": "^9.3.6",
"tar": "^7.4.3",
"turbo": "^2.1.2",
"webpack-obfuscator": "^3.5.1"
},
"packageManager": "pnpm@9.7.0"
}