mirror of
https://github.com/DumbWareio/DumbDrop.git
synced 2025-10-22 23:31:57 +00:00
- Add express-rate-limit for API and upload routes - Implement optional file extension filtering via ALLOWED_EXTENSIONS - Add security headers middleware - Update docker-compose image to official repository - Update README with new environment variable and filtering documentation
28 lines
621 B
JSON
28 lines
621 B
JSON
{
|
|
"name": "dumbdrop",
|
|
"version": "1.0.0",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "A simple file upload application",
|
|
"dependencies": {
|
|
"apprise": "^1.0.0",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.3",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^7.1.5",
|
|
"multer": "^1.4.5-lts.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.9",
|
|
"svg2img": "^1.0.0-beta.2"
|
|
}
|
|
}
|