-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "lawrenceli.me",
"version": "1.0.0",
"markdown": "github",
"scripts": {
"dev": "pnpm feed && next dev -H 0.0.0.0 --turbo",
"feed": "node ./lib/feed.mjs",
"websub": "node ./lib/websub.mjs",
"start": "next start",
"build": "NEXT_PUBLIC_BUILDTIME=$(date '+%s') next build && pnpm feed && next-sitemap",
"lint": "next lint",
"export": "next export",
"fmt": "prettier --write .",
"clean": "rm -rf .next; rm -rf node_modules"
},
"dependencies": {
"@jsdevtools/rehype-toc": "^3.0.2",
"@microflash/rehype-figure": "^2.1.0",
"@shikijs/transformers": "1.26.2",
"@vercel/og": "^0.6.0",
"disqus-react": "^1.1.5",
"dotenv": "16.4.7",
"flexsearch": "^0.7.31",
"gray-matter": "4.0.3",
"hast-util-from-html": "^2.0.0",
"hast-util-to-jsx-runtime": "^2.1.1",
"markdown-it": "^14.0.0",
"medium-zoom": "^1.1.0",
"mongodb": "^6.0.0",
"next": "15.1.4",
"next-sitemap": "^4.0.0",
"next-themes": "0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-tweet": "3.2.1",
"rehype-autolink-headings": "7.1.0",
"rehype-external-links": "3.0.0",
"rehype-gist": "1.0.0",
"rehype-pretty-code": "0.14.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.1",
"rehype-video": "2.3.0",
"remark": "15.0.1",
"remark-gfm": "4.0.0",
"remark-rehype": "11.1.1",
"shiki": "1.27.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.16",
"autoprefixer": "10.4.20",
"eslint": "9.18.0",
"eslint-config-next": "15.1.4",
"postcss": "8.5.1",
"prettier": "3.4.2",
"tailwindcss": "3.4.17",
"typescript": "5.7.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100
},
"engines": {
"node": ">=20.0.0"
}
}