-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"name": "codeflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@clerk/clerk-sdk-node": "^5.1.6",
"@clerk/nextjs": "^6.20.2",
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^5.0.1",
"@prisma/client": "^5.19.1",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-menubar": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.12",
"@tailwindcss/postcss": "^4.0.12",
"@tinymce/miniature": "^3.0.1",
"@tinymce/tinymce-react": "^6.1.0",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"html-react-parser": "^5.2.5",
"lucide-react": "^0.479.0",
"marked": "^17.0.1",
"next": "^15.2.0",
"next-themes": "^0.4.6",
"postcss": "^8.5.3",
"prismjs": "^1.30.0",
"query-string": "^9.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.56.4",
"sonner": "^2.0.7",
"svix": "^1.66.0",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.4"
},
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@types/marked": "^5.0.2",
"@types/node": "^20.17.50",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/tinymce": "^4.6.9",
"prisma": "^5.19.1",
"tailwindcss": "^4.0.12",
"tsc": "^2.0.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}