Initial project setup with dependencies and deployment config
This commit is contained in:
25
package.json
Normal file
25
package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user