-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"private": true,
"type": "module",
"scripts": {
"copy-images": "./scripts/copy-images.sh",
"dev": "concurrently --kill-others-on-fail \"ENV_NAME=localhost contentlayer2 dev\" \"next dev\"",
"build": "pnpm run copy-images && pnpm run build:content && next build && pnpm run rss",
"build:content": "contentlayer2 build",
"start": "next start",
"rss": "tsx scripts/rss.ts"
},
"dependencies": {
"@microflash/remark-figure-caption": "^2.0.2",
"@vercel/analytics": "^1.4.1",
"classnames": "^2.5.1",
"contentlayer2": "^0.5.3",
"date-fns": "^4.1.0",
"feed": "^4.2.2",
"hast-util-whitespace": "^3.0.0",
"mdast-util-from-markdown": "^2.0.2",
"next": "^14.2.22",
"next-contentlayer2": "^0.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-pretty-code": "^0.14.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-callouts": "^2.0.0",
"remark-embed-images": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-wiki-link": "^2.0.1",
"shiki": "^1.27.2",
"unified": "^11.0.5",
"unist-util-remove": "^4.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@mermaid-js/mermaid-cli": "^11.4.2",
"@next/env": "^14.2.22",
"@puppeteer/browsers": "^2.7.0",
"@tailwindcss/typography": "^0.5.16",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/unist": "^3.0.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}