filesafe/package.json
Bobby Wibowo e55a04c156
Updates
Added cfpurge.js to scripts directory.
This can be used to purge cache of frontend pages and uploads.
Do "node scripts/cfpurge.js --help" for usage.

Removed "randver" from package.js/scripts.
I've installed randomstring globally instead and just simply do:
randomstring n
Back then I didn't know it could be used that way.
2019-01-06 13:27:17 +07:00

51 lines
1.3 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",
"pm2": "pm2 start --name safe ./lolisafe.js",
"thumbs": "node ./scripts/thumbs.js",
"pull": "git stash; git pull; yarn; git stash pop",
"pm2restart": "pm2 restart safe"
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.2",
"clamdjs": "^1.0.1",
"express": "^4.16.3",
"express-rate-limit": "^2.11.0",
"fluent-ffmpeg": "^2.1.2",
"helmet": "^3.12.0",
"jszip": "^3.1.5",
"knex": "^0.14.6",
"multer": "^1.3.0",
"node-fetch": "^2.2.0",
"nunjucks": "^3.1.3",
"randomstring": "^1.1.5",
"readline": "^1.3.0",
"sharp": "^0.21.0",
"sqlite3": "^4.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
}
}