Files
boc/vims-backend/package.json
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- Added GLOBAL_MARKETS_TITLE to all translation files
- Updated footer with 12 markets (4 active + 8 upcoming)
- Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi
- Built and deployed to production
- CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
2026-07-08 19:56:03 +00:00

52 lines
1.3 KiB
JSON

{
"name": "vims-backend",
"version": "1.0.0",
"description": "Visual Infrastructure Monitoring System - Backend",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"train": "node src/training/train-object-detection.js",
"worker": "node src/workers/process-queue.js",
"lint": "eslint src/"
},
"dependencies": {
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.6",
"uuid": "^9.0.1",
"bull": "^4.12.0",
"ioredis": "^5.3.2",
"pg": "^8.11.3",
"sequelize": "^6.35.0",
"dotenv": "^16.3.1",
"winston": "^3.11.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"compression": "^1.7.4",
"rate-limiter-flexible": "^4.0.1",
"node-cron": "^3.0.3",
"axios": "^1.6.2",
"form-data": "^4.0.0",
"@aws-sdk/client-s3": "^3.450.0",
"@aws-sdk/s3-request-presigner": "^3.450.0",
"nodemailer": "^6.9.7",
"twilio": "^4.19.0",
"web-push": "^3.6.6"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.3",
"nodemon": "^3.0.2",
"eslint": "^8.54.0"
},
"engines": {
"node": ">=18.0.0"
}
}