-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.69 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
{
"name": "scrcr",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev --turbopack",
"build": "prisma db push && next build --turbopack",
"start": "next start",
"test": "vitest",
"test:ui": "vitest --ui",
"seed": "npx tsx prisma/seed.ts"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^7.8.0",
"@prisma/client": "^7.8.0",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.15.5",
"@vercel/blob": "^2.3.3",
"@vercel/postgres": "^0.10.0",
"bcryptjs": "^3.0.3",
"dotenv": "^17.2.3",
"exceljs": "^4.4.0",
"jose": "^6.1.1",
"jsonwebtoken": "^9.0.2",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.7",
"next": "^15.5.5",
"nodemailer": "^9.0.3",
"pg": "^8.16.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"sweetalert2": "^11.26.2",
"xlsx": "^0.18.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/exceljs": "^0.5.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/jspdf": "^1.3.3",
"@types/node": "^20.19.21",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/ui": "^4.0.18",
"jsdom": "^28.1.0",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
}
}