-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.16 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
{
"name": "community-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check": "biome check",
"check:fix": "biome check --write",
"lint": "biome check",
"format": "biome format --write",
"postinstall": "prisma generate",
"doctor": "npx react-doctor@latest"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@radix-ui/react-switch": "^1.2.6",
"@react-email/components": "^1.0.10",
"@react-email/render": "^2.0.4",
"@uiw/react-md-editor": "^4.1.0",
"@vercel/analytics": "^2.0.1",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.10.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.4.8",
"dotenv": "^17.3.1",
"embla-carousel-auto-scroll": "^8.6.0",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.38.0",
"gray-matter": "^4.0.3",
"jose": "^6.2.2",
"lucide-react": "^0.575.0",
"marked": "^17.0.6",
"next": "16.2.6",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"prisma": "^7.8.0",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "^5.5.0",
"resend": "^6.12.4",
"sanitize-html": "^2.17.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.19",
"@types/bcryptjs": "^3.0.0",
"@types/dompurify": "^3.2.0",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.1",
"@vitest/coverage-v8": "^4.1.8",
"fast-check": "^4.6.0",
"react-doctor": "^0.5.5",
"shadcn": "^4.0.5",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.1.8"
},
"pnpm": {
"overrides": {
"postcss": ">=8.5.10",
"brace-expansion": ">=5.0.6",
"qs": ">=6.15.2",
"fast-uri": ">=3.1.2"
}
}
}