-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "minilink",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"dependencies": {
"@clerk/nextjs": "^4.29.9",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@prisma/client": "^5.9.0",
"cloudinary": "^2.0.0",
"clsx": "^2.1.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.312.0",
"next": "^14.2.25",
"next-cloudinary": "^5.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.12.0",
"tailwind-merge": "^2.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.0",
"postcss": "^8.4.33",
"prisma": "^5.9.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}