-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.09 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
{
"name": "void-space",
"version": "0.1.0",
"private": false,
"description": "A minimalist, modern blog platform with unique community engagement features",
"repository": {
"type": "git",
"url": "https://github.com/vedantkarle/void-space"
},
"author": "Vedant Karle",
"license": "MIT",
"engines": {
"node": ">=20.20.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-embeddings": "npx tsx scripts/generate-embeddings.ts",
"convert-images": "npx tsx scripts/convert-images-to-webp.ts",
"translate-posts": "npx tsx scripts/translate-posts.ts",
"analyze": "ANALYZE=true npm run build"
},
"dependencies": {
"@2toad/profanity": "^3.2.0",
"@chenglou/pretext": "^0.0.4",
"@flags-sdk/statsig": "^0.2.5",
"@google/generative-ai": "^0.24.1",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.5.9",
"@supabase/supabase-js": "^2.89.0",
"@types/mdx": "^2.0.13",
"@types/node": "^20.19.27",
"@types/react": "^18.3.27",
"@types/react-dom": "^18",
"@types/react-syntax-highlighter": "^15.5.13",
"@upstash/ratelimit": "^2.0.7",
"@upstash/redis": "^1.36.1",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"autoprefixer": "^10.4.23",
"axios": "^1.13.2",
"convex": "^1.31.2",
"flags": "^4.0.2",
"gray-matter": "^4.0.3",
"html-to-image": "^1.11.13",
"lucide-react": "^0.562.0",
"next": "^15.5.9",
"postcss": "^8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-linkify": "^1.0.0-alpha",
"react-markdown": "^9.1.0",
"react-syntax-highlighter": "^16.1.0",
"reading-time": "^1.5.0",
"resend": "^6.6.0",
"sharp": "^0.33.5",
"statsig-node": "^6.5.1",
"tailwindcss": "^3.4.19",
"typescript": "^5",
"zod": "^4.3.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.1.3",
"@types/react-linkify": "^1.0.4",
"dotenv": "^17.2.3",
"eslint": "^8",
"eslint-config-next": "^15.5.9",
"supabase": "^2.48.3"
}
}