forked from KabiruH/attendance_project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.43 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.43 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
{
"name": "attendance_project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"postinstall": "prisma generate",
"vercel-build": "prisma generate && next build"
},
"dependencies": {
"@prisma/client": "^6.7.0",
"@radix-ui/react-alert-dialog": "^1.1.7",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-tooltip": "^1.1.6",
"@simplewebauthn/browser": "^13.1.2",
"@simplewebauthn/server": "^13.1.1",
"@simplewebauthn/types": "^12.0.0",
"@tanstack/react-query": "^5.64.1",
"@types/js-cookie": "^3.0.6",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.1.0",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.6.1",
"clsx": "^2.1.1",
"express": "^4.21.2",
"iron-session": "^8.0.4",
"jose": "^5.9.6",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.471.1",
"luxon": "^3.7.1",
"mssql": "^11.0.1",
"next": "^15.1.6",
"next-auth": "^4.24.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.15.0",
"resend": "^4.1.2",
"sonner": "^1.7.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"xlsx": "^0.18.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/d3-path": "^3.1.1",
"@types/d3-scale": "^4.0.9",
"@types/estree": "^1.0.7",
"@types/jsonwebtoken": "^9.0.7",
"@types/luxon": "^3.6.2",
"@types/mssql": "^9.1.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"constructs": "^10.4.2",
"esbuild": "^0.25.8",
"eslint": "^9",
"eslint-config-next": "15.1.4",
"postcss": "^8",
"prisma": "^6.12.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}