-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.48 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.48 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "sci",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:reset": "docker-compose down -v",
"docker:status": "docker-compose ps",
"docker:migrate": "docker-compose exec app npx prisma migrate dev",
"docker:build": "docker-compose up -d --build"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@emotion/react": "^11.11.3",
"@hookform/resolvers": "^3.3.3",
"@nextui-org/react": "^2.2.9",
"@prisma/client": "^6.19.2",
"@react-pdf/renderer": "^4.4.1",
"@supabase/auth-helpers-nextjs": "^0.15.0",
"@supabase/auth-helpers-react": "^0.15.0",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.93.2",
"@yudiel/react-qr-scanner": "^2.2.1",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"better-sqlite3": "^12.6.2",
"canvas-confetti": "^1.9.4",
"dotenv": "^16.3.2",
"easyqrcodejs": "^4.6.1",
"framer-motion": "^12.37.0",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.2.0",
"next": "^16.1.6",
"next-auth": "^4.24.5",
"next-themes": "^0.2.1",
"pdfjs-dist": "^5.4.530",
"pdfkit": "^0.17.2",
"qrcode.react": "^4.2.0",
"react": "^18",
"react-awesome-reveal": "^4.2.8",
"react-dom": "^18",
"react-hook-form": "^7.71.1",
"react-icons": "^4.12.0",
"react-intersection-observer": "^9.8.0",
"react-qr-code": "^2.0.18",
"react-responsive": "^9.0.2",
"react-scrollbars-custom": "^4.1.1",
"react-toastify": "^11.0.5",
"resend": "^6.9.2",
"swr": "^2.4.1",
"zod": "^3.22.4",
"zod-prisma-types": "^3.3.11"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/bcrypt": "^5.0.2",
"@types/canvas-confetti": "^1.9.0",
"@types/dotenv": "^6.1.1",
"@types/jspdf": "^1.3.3",
"@types/next-auth": "^3.13.0",
"@types/node": "20.11.10",
"@types/pdfjs-dist": "^2.10.377",
"@types/react": "^18.2.48",
"autoprefixer": "^10.0.1",
"eslint": "^10.0.1",
"eslint-config-next": "^0.2.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8",
"prisma": "^6.19.2",
"supabase": "^2.88.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.7.2"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"overrides": {
"cookie": "^0.7.0",
"tar": "^7.5.4"
}
}