-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.56 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.56 KB
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
{
"name": "bestcodes.dev",
"version": "1.9.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "npm run cache-generation && next build --turbopack && npm run sitemap-generation",
"sitemap-generation": "rm -rf public/sitemap*.xml public/robots.txt && next-sitemap",
"cache-generation": "npm run cache:blog-slugs",
"cache:blog-slugs": "rm -rf .blog-cache && mkdir .blog-cache && node scripts/generate-slugs.mjs",
"start": "next start",
"lint": "bunx oxlint .",
"drizzle-kit": "drizzle-kit",
"update-deps": "bun update --latest",
"blog-key": "node scripts/generate-blog-key.mjs"
},
"dependencies": {
"@fuma-comment/react": "^1.4.1",
"@fuma-comment/server": "^1.4.1",
"@hookform/resolvers": "^5.2.2",
"@next/third-parties": "16.2.1",
"@vercel/speed-insights": "^2.0.0",
"babel-plugin-react-compiler": "^1.0.0",
"better-auth": "^1.5.6",
"botid": "^1.5.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"gray-matter": "^4.0.3",
"gsap": "^3.14.2",
"lucide-react": "^1.7.0",
"next": "16.2.1",
"next-mdx-remote": "^6.0.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.4",
"pg": "^8.20.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.72.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"sanitize-html": "^2.17.2",
"sharp": "0.34.5",
"shiki": "^4.0.2",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@clack/prompts": "^1.1.0",
"@google/genai": "^1.47.0",
"@shikijs/rehype": "^4.0.2",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/gsap": "^3.0.0",
"@types/node": "^25.5.0",
"@types/nodemailer": "^7.0.11",
"@types/pg": "^8.20.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/sanitize-html": "^2.16.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.31.10",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"unist-util-visit": "^5.1.0",
"yargs": "^18.0.0"
},
"trustedDependencies": [
"@prisma/engines",
"@tailwindcss/oxide",
"@vercel/speed-insights",
"better-sqlite3",
"esbuild",
"oniguruma",
"prisma",
"protobufjs",
"sharp"
]
}