-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.81 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
89
90
91
92
93
94
{
"name": "codelab",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "npx prisma migrate deploy && npx prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.802.0",
"@clerk/localizations": "^3.14.0",
"@clerk/nextjs": "^6.18.0",
"@hello-pangea/dnd": "^18.0.1",
"@hookform/resolvers": "^5.0.1",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "6.6.0",
"@radix-ui/react-accordion": "^1.2.8",
"@radix-ui/react-alert-dialog": "^1.1.11",
"@radix-ui/react-avatar": "^1.1.7",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-popover": "^1.1.11",
"@radix-ui/react-primitive": "^2.1.0",
"@radix-ui/react-progress": "^1.1.4",
"@radix-ui/react-select": "^2.2.2",
"@radix-ui/react-separator": "^1.1.4",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.9",
"@radix-ui/react-tooltip": "^1.2.4",
"@react-input/mask": "^2.0.4",
"@tabler/icons-react": "^3.33.0",
"@tanstack/react-query": "^5.74.7",
"@tanstack/react-table": "^8.21.3",
"@tiptap/core": "^2.11.9",
"@tiptap/pm": "^2.11.9",
"@tiptap/react": "^2.11.9",
"@tiptap/starter-kit": "^2.11.9",
"@tsparticles/engine": "^3.8.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.8.1",
"@vidstack/react": "^1.12.13",
"axios": "^1.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cobe": "^0.6.3",
"date-fns": "^4.1.0",
"dequal": "^2.0.3",
"lucide-react": "^0.511.0",
"matter-js": "^0.20.0",
"motion": "^12.15.0",
"next": "15.3.8",
"next-themes": "^0.4.6",
"pretty-bytes": "^7.0.0",
"query-string": "^9.1.1",
"react": "^19.0.0",
"react-credit-cards-2": "^1.0.3",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.56.1",
"react-use-draggable-scroll": "^0.4.7",
"recharts": "^2.15.3",
"slugify": "^1.6.6",
"sonner": "^2.0.3",
"svix": "^1.64.1",
"tailwind-merge": "^3.3.0",
"ts-node": "^10.9.2",
"zod": "^3.24.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@types/matter-js": "^0.19.8",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"prisma": "6.6.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.2.8",
"typescript": "^5"
}
}