-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.06 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
{
"name": "codingnexus",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"postinstall": "prisma generate",
"dev": "vite",
"server": "node server/index.js",
"dev:docs": "cd docs && npm start -- --port 3000",
"dev:all": "concurrently \"npm run dev\" \"npm run server\"",
"create-admin": "node scripts/create-admin.js",
"check-admin": "node check-admin.js",
"build": "npm run build-docs && vite build",
"build-docs": "cd docs && npm install && npm run build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@cloudinary/url-gen": "^1.22.0",
"@getbrevo/brevo": "^3.0.1",
"@monaco-editor/react": "^4.7.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@tailwindcss/vite": "^4.1.18",
"axios": "^1.13.4",
"bcryptjs": "^3.0.3",
"cloudinary": "^2.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.2.0",
"lucide-react": "^0.562.0",
"multer": "^2.0.2",
"nodemailer": "^6.9.8",
"pdfkit": "^0.17.2",
"pg": "^8.16.3",
"png-js": "^1.0.0",
"prisma": "^7.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-easy-crop": "^5.5.6",
"react-hot-toast": "^2.6.0",
"react-image-crop": "^11.0.10",
"react-router-dom": "^7.11.0",
"react-syntax-highlighter": "^16.1.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"uuid": "^9.0.1",
"xlsx": "^0.18.5",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"vite": "^7.2.4"
},
"overrides": {
"ajv": "^6.14.0",
"minimatch": "^3.1.4",
"lodash": "^4.17.21",
"qs": "^6.14.2",
"rollup": "^4.59.0"
}
}