BIG_UPDATE deleted vps, added s3 infrastructure.

This commit is contained in:
Georgiy Syralev
2025-11-23 14:35:16 +03:00
parent ae1f93a934
commit c4c2610480
173 changed files with 22684 additions and 5894 deletions

View File

@@ -4,9 +4,15 @@
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"start": "node dist/src/index.js",
"build": "tsc"
"build": "tsc",
"pm2:start": "pm2 start ecosystem.config.js --env production && pm2 save",
"pm2:stop": "pm2 stop ospab-backend && pm2 delete ospab-backend && pm2 save",
"pm2:restart": "pm2 reload ecosystem.config.js --env production && pm2 save",
"pm2:logs": "pm2 logs ospab-backend",
"pm2:monit": "pm2 monit",
"pm2:status": "pm2 list"
},
"keywords": [],
"author": "",
@@ -24,13 +30,16 @@
"express-session": "^1.18.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"minio": "^8.0.6",
"multer": "^2.0.2",
"nodemailer": "^6.9.15",
"passport": "^0.7.0",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-yandex": "^0.0.5",
"proxmox-api": "^1.1.1",
"ssh2": "^1.17.0",
"web-push": "^3.6.7",
"ws": "^8.18.3",
"xterm": "^5.3.0"
},
@@ -42,10 +51,12 @@
"@types/express-session": "^1.18.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/nodemailer": "^6.4.15",
"@types/node": "^20.12.12",
"@types/passport": "^1.0.17",
"@types/passport-github": "^1.1.12",
"@types/passport-google-oauth20": "^2.0.16",
"@types/web-push": "^3.6.4",
"@types/xterm": "^2.0.3",
"prisma": "^6.16.2",
"ts-node-dev": "^2.0.0",