Initial project setup with dependencies and deployment config

This commit is contained in:
Walusimbi Silver
2026-03-17 13:02:13 +03:00
commit 2981605394
6 changed files with 2183 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "imgforge",
"version": "1.0.0",
"description": "Self-hosted image processing queue — resize, convert, compress, watermark with Bull + Sharp",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"worker": "node src/workers/image.worker.js",
"dev": "node --watch src/index.js",
"dev:worker": "node --watch src/workers/image.worker.js"
},
"dependencies": {
"bull": "^4.12.9",
"bullmq": "^5.20.0",
"express": "^4.21.0",
"multer": "^1.4.5-lts.1",
"sharp": "^0.33.5",
"ws": "^8.18.0",
"@bull-board/express": "^5.21.0",
"@bull-board/api": "^5.21.0",
"mime-types": "^2.1.35",
"nanoid": "^3.3.7",
"dotenv": "^16.4.5"
}
}