-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 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
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.12.1",
"@vercel/og": "^0.6.0",
"disqus-react": "^1.1.5",
"dotenv": "^16.3.1",
"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.0.3",
"next-sitemap": "^4.0.0",
"next-themes": "^0.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"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.22.2",
"uuid": "^11.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.15",
"autoprefixer": "10.4.20",
"eslint": "9.14.0",
"eslint-config-next": "15.0.3",
"postcss": "8.4.49",
"prettier": "3.3.3",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100
},
"engines": {
"node": ">=20.0.0"
}
}