-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 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
{
"name": "hackoverflow-admin",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"create-admin": "tsx scripts/create-admin.ts"
},
"overrides": {
"minimatch": "^10.2.1"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"dotenv": "^17.2.3",
"googleapis": "^171.4.0",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.1.0",
"jsqr": "^1.4.0",
"jszip": "^3.10.1",
"mongodb": "^7.1.0",
"next": "16.1.6",
"nodemailer": "^8.0.0",
"papaparse": "^5.5.3",
"qrcode": "^1.5.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"svg2pdf.js": "^2.7.0",
"ts-node": "^10.9.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/jszip": "^3.4.0",
"@types/node": "^20",
"@types/nodemailer": "^7.0.9",
"@types/papaparse": "^5.5.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9",
"eslint-config-next": "^16.1.6",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}