Add a new simple-file-server project. Includes Express server, auth and file routes, static client assets (public), and a db/connection module that uses MariaDB to log file actions and initialize a users table. Add Dockerfile and docker-compose.yml (exposes 3000 → 8080 and mounts ./uploads), .env.example, .gitignore, package.json and package-lock.json, and an uploads scaffold. This provides a ready-to-run app with container support and basic DB integration.
25 lines
521 B
JSON
25 lines
521 B
JSON
{
|
|
"name": "simple-file-server",
|
|
"version": "1.0.0",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "node server.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"dependencies": {
|
|
"adm-zip": "^0.5.16",
|
|
"archiver": "^7.0.1",
|
|
"bcryptjs": "^3.0.3",
|
|
"cors": "^2.8.6",
|
|
"dotenv": "^17.2.4",
|
|
"express": "^5.2.1",
|
|
"express-session": "^1.19.0",
|
|
"mariadb": "^3.4.5",
|
|
"multer": "^2.0.2"
|
|
}
|
|
}
|