mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-14 00:16:21 +00:00
02e2e402c3
As the title says, this commit is a massive overhaul. I've rewritten/restrucuted almost everything in the controller scripts. Because of that, there's a considerable possibility that I've broken something somewhere. Notable changes: Added temporary uploads. Removed file name length changer from dashboard, in favor of an equivalent in homepage config tab. This allows non-registered users to also set file name length. A bunch of other undocmented stuff. I don't know, I'm too tired to remember them all.
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "lolisafe",
|
|
"version": "3.0.0",
|
|
"description": "Blazing fast file uploader and awesome bunker written in node! 🚀",
|
|
"author": "Pitu",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/WeebDev/lolisafe"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/WeebDev/lolisafe/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"start": "node ./lolisafe.js",
|
|
"startdev": "env NODE_ENV=development node ./lolisafe.js",
|
|
"pm2": "pm2 start --name safe ./lolisafe.js",
|
|
"cf-purge": "node ./scripts/cf-purge.js",
|
|
"delete-expired": "node ./scripts/delete-expired.js",
|
|
"thumbs": "node ./scripts/thumbs.js",
|
|
"pull": "git stash; git pull; yarn install --production; git stash pop; echo OK."
|
|
},
|
|
"dependencies": {
|
|
"bcrypt": "^3.0.6",
|
|
"body-parser": "^1.19.0",
|
|
"clamdjs": "^1.0.2",
|
|
"express": "^4.17.1",
|
|
"express-rate-limit": "^5.0.0",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"helmet": "^3.21.0",
|
|
"jszip": "^3.2.2",
|
|
"knex": "^0.19.3",
|
|
"multer": "^1.4.2",
|
|
"node-fetch": "^2.6.0",
|
|
"nunjucks": "^3.2.0",
|
|
"randomstring": "^1.1.5",
|
|
"readline": "^1.3.0",
|
|
"sharp": "^0.23.0",
|
|
"sqlite3": "^4.1.0",
|
|
"systeminformation": "^4.14.8"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^6.3.0",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-node": "^10.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1"
|
|
}
|
|
}
|