-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.4 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
{
"name": "seniorleveldevelopment",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "jest"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@bull-board/api": "^6.20.5",
"@bull-board/express": "^6.20.5",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@sentry/nextjs": "^10.43.0",
"@tanstack/react-query": "^5.90.21",
"bcrypt": "^6.0.0",
"bullmq": "^5.71.0",
"cloudinary": "^2.9.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"ioredis": "^5.10.0",
"multer": "^2.1.1",
"next": "16.1.6",
"next-auth": "^4.24.13",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"prisma": "^7.5.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hot-toast": "^2.6.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tsx": "^4.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"babel-jest": "^30.3.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"playwright": "^1.58.2",
"tailwindcss": "^4"
}
}