-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 KB
/
package.json
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
{
"name": "nextjs-urlshortener",
"version": "0.1.0",
"private": true,
"prisma": {
"schema": "./prisma/schema.prisma"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"bprismag": "bunx prisma generate",
"bprismam": "bunx prisma migrate dev --name init",
"prismag": "pnpm dlx prisma generate",
"prismam": "pnpm dlx prisma migrate dev --name init",
"scommit": "sui-mono commit",
"pdb": "pnpm dlx prisma db push"
},
"dependencies": {
"@clerk/nextjs": "^5.0.6",
"@clerk/themes": "2.1.2",
"@hookform/resolvers": "3.3.1",
"@prisma/client": "5.13.0",
"@radix-ui/react-alert-dialog": "1.0.4",
"@radix-ui/react-avatar": "1.0.3",
"@radix-ui/react-dialog": "1.0.4",
"@radix-ui/react-dropdown-menu": "2.0.5",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-navigation-menu": "1.1.3",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-toast": "1.1.4",
"@tailwindcss/forms": "0.5.6",
"@tanstack/react-table": "8.16.0",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "15.0.6",
"@types/node": "20.12.8",
"@types/qrcode": "1.5.5",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"axios": "1.6.8",
"class-variance-authority": "0.7.0",
"clsx": "2.1.0",
"eslint": "^8.0.0",
"eslint-config-next": "14.1.0",
"lucide-react": "0.378.0",
"next": "14.2.3",
"next-themes": "0.3.0",
"qrcode": "1.5.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.51.4",
"react-hot-toast": "2.4.1",
"react-icons": "5.2.0",
"svix": "1.23.0",
"swr": "2.2.5",
"tailwind-merge": "2.3.0",
"tailwindcss-animate": "1.0.7",
"typescript": "5.4.5",
"zod": "3.23.6",
"zustand": "4.5.2"
},
"devDependencies": {
"@s-ui/mono": "2.45.0",
"@types/bcrypt": "5.0.2",
"autoprefixer": "10.4.19",
"postcss": "8.4.38",
"tailwindcss": "3.4.3"
}
}