-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.44 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.44 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
{
"name": "student-hub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/jsdom": "^21.1.7",
"@types/nodemailer": "^7.0.1",
"@upstash/ratelimit": "^2.0.6",
"@vercel/analytics": "^1.6.0",
"@vercel/kv": "^3.0.0",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.7.0",
"clsx": "^2.1.1",
"dompurify": "^3.2.6",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"form-data": "^4.0.4",
"formidable": "^3.5.4",
"jsdom": "^26.1.0",
"lucide-react": "^0.542.0",
"mailgun.js": "^12.1.1",
"mongoose": "^8.18.0",
"mongoose-aggregate-paginate-v2": "^1.1.4",
"multer": "^2.0.2",
"next": "15.5.9",
"next-auth": "^4.24.11",
"next-multiparty": "^0.7.0",
"next-themes": "^0.4.6",
"nodemailer": "^6.6.5",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.3.1",
"validator": "^13.15.15",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.13",
"@types/multer": "^2.0.0",
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/zxcvbn": "^4.4.5",
"eslint": "9.35.0",
"eslint-config-next": "15.5.2",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.13",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.2"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"bcrypt",
"sharp",
"unrs-resolver"
],
"simple-git-hooks": {
"pre-commit": "pnpm format"
}
}