-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "cryptobonuses",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "node scripts/generate-redirects.js && next build",
"build:quick": "next build",
"start": "next start",
"lint": "next lint",
"create-admin": "node scripts/create-admin.js",
"seed-data": "node scripts/seed-data.js",
"clear-db": "node scripts/clear-db.js",
"reset-db": "node scripts/clear-db.js && node scripts/seed-data.js",
"generate-redirects": "node scripts/generate-redirects.js"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.9.1",
"@hookform/resolvers": "^5.0.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.10.0",
"@types/mime-types": "^3.0.1",
"@vercel/blob": "^1.1.1",
"cloudinary": "^2.7.0",
"date-fns": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mime-types": "^3.0.1",
"multer": "^2.0.1",
"next": "14.1.0",
"next-auth": "^4.24.11",
"next-i18next": "^15.4.2",
"next-intl": "^4.3.4",
"puppeteer": "^24.10.0",
"react": "^18",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18",
"react-hook-form": "^7.56.1",
"react-hot-toast": "^2.5.2",
"recharts": "^2.15.3",
"uuid": "^11.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.0.1",
"bcryptjs": "^3.0.2",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"jest": "^30.0.3",
"postcss": "^8",
"prisma": "^5.10.0",
"sharp": "^0.34.2",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.1",
"typescript": "^5"
}
}