Build & Push Docker Image / build (push) Successful in 4m1s
- npm update for all semver-compatible packages (vite 8.1.5, concurrently 9.2.4, axios 1.18.1, better-sqlite3 12.11.1, ...) - nodemailer 8 -> 9 (fixes GHSA-p6gq-j5cr-w38f and three further advisories: CRLF header injection, jsonTransport/raw file-access bypasses, OAuth2 TLS validation) - override exceljs' nested uuid to ^11.1.1 (GHSA-w5hq-g745-h8pq) instead of the breaking exceljs downgrade npm audit suggests - allow better-sqlite3 install script (npm allowScripts policy) npm audit: 0 vulnerabilities Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "redlight",
|
|
"private": true,
|
|
"version": "2.4.1",
|
|
"license": "GPL-3.0-or-later",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently -n client,server -c blue,green \"vite\" \"node --watch server/index.js\"",
|
|
"dev:client": "vite",
|
|
"dev:server": "node --watch server/index.js",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"start": "NODE_ENV=production node server/index.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.0",
|
|
"bcryptjs": "^3.0.3",
|
|
"better-sqlite3": "^12.6.2",
|
|
"concurrently": "^9.0.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^17.3.1",
|
|
"exceljs": "^4.4.0",
|
|
"express": "^5.2.1",
|
|
"express-rate-limit": "^8.5.2",
|
|
"flatpickr": "^4.6.13",
|
|
"ioredis": "^5.10.0",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"lucide-react": "^1.16.0",
|
|
"multer": "^2.1.0",
|
|
"nodemailer": "^9.0.3",
|
|
"otpauth": "^9.5.0",
|
|
"pdfkit": "^0.18.0",
|
|
"pg": "^8.18.0",
|
|
"qrcode": "^1.5.4",
|
|
"rate-limit-redis": "^5.0.0",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"react-hot-toast": "^2.4.0",
|
|
"react-router-dom": "^7.15.1",
|
|
"uuid": "^14.0.0",
|
|
"xml2js": "^0.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.3.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"postcss": "^8.4.0",
|
|
"tailwindcss": "^4.3.0",
|
|
"vite": "^8.0.0"
|
|
},
|
|
"overrides": {
|
|
"exceljs": {
|
|
"uuid": "^11.1.1"
|
|
}
|
|
},
|
|
"allowScripts": {
|
|
"better-sqlite3@12.11.1": true
|
|
}
|
|
}
|