-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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": "aab-website-2024",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cleanup-images": "tsx scripts/cleanup-unused-images.ts",
"cleanup-images:execute": "tsx scripts/cleanup-unused-images.ts --execute"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@vercel/blob": "^0.27.1",
"@vercel/postgres": "^0.10.0",
"bcrypt": "^5.1.1",
"dotenv": "^17.2.3",
"heic2any": "^0.0.4",
"next": "16.1.6",
"next-auth": "5.0.0-beta.30",
"node-fetch": "^3.3.2",
"nodemailer": "^8.0.1",
"postgres": "^3.4.5",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"sharp": "^0.33.5",
"tailwindcss-textshadow": "^2.1.3",
"uuid": "^11.0.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^22.13.1",
"@types/nodemailer": "^7.0.9",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "16.1.6",
"postcss": "^8",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5"
}
}