forked from vishnukothakapu/linkid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.1 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
{
"name": "linkid",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "prisma generate",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"postinstall": "node scripts/postinstall-prisma-generate.mjs",
"lint": "eslint",
"test": "tsx --test lib/csrf.test.ts lib/middleware/csrf.test.ts lib/analytics.test.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@prisma/adapter-pg": "7.2.0",
"@prisma/client": "7.2.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"bcryptjs": "^3.0.3",
"body-parser": "^2.2.2",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.9.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"next-auth": "^4.24.13",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.12",
"pg": "^8.16.3",
"qrcode": "^1.5.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-image-crop": "^11.0.10",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bn.js": "^5.2.0",
"@types/body-parser": "^1.19.6",
"@types/bson": "^4.0.5",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/concat-stream": "^2.0.3",
"@types/cookie": "^0.6.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/form-data": "^2.2.1",
"@types/glob": "^8.1.0",
"@types/lru-cache": "^7.10.9",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"prisma": "7.2.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}