-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check --apply .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-icons": "^1.3.0",
"@shikijs/rehype": "^1.6.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"katex": "^0.16.10",
"next": "14.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reading-time": "^1.5.0",
"rehype-katex": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-parse-frontmatter": "^1.0.3",
"remark-rehype": "^11.1.0",
"rss": "^1.2.2",
"tailwind-merge": "^2.3.0",
"unified": "^11.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/rss": "^0.0.32",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5"
}
}