filesafe/package.json
Bobby f72a786507
fix: bumped minimum node version to >= 16.0.0
there was an oversight in that, the version of hyper-express we have
been using in the past few months, depended on a version of
uwebsockets.js that already dropped support for node 14
https://github.com/uNetworking/uWebSockets.js/releases/tag/v20.14.0

additionally, a recent hyper-express update, which will be committed
soon after this commit, will depend on a version of uwebsockets.js that
officially only supports the last 3 LTS versions (16, 18, and 20)
https://github.com/kartikk221/hyper-express/releases/tag/6.5.9

then there's also the fact that node 14 will reach EOL by next week, or
30 April 2023
https://github.com/nodejs/release#release-schedule

with all those considered, i will also be officially dropping support
for node 14, albeit a week early than node's team
2023-04-23 08:19:15 +07:00

97 lines
2.9 KiB
JSON

{
"name": "lolisafe",
"version": "3.0.0",
"description": "Blazing fast file uploader and awesome bunker written in node! 🚀",
"repository": {
"type": "git",
"url": "https://github.com/BobbyWibowo/lolisafe"
},
"bugs": {
"url": "https://github.com/BobbyWibowo/lolisafe/issues"
},
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"scripts": {
"start": "env NODE_ENV=production node ./lolisafe.js",
"start:reload": "env NODE_ENV=production gulp watch",
"pm2": "env NODE_ENV=production pm2 start ./lolisafe.js",
"lint": "gulp lint",
"build": "gulp default",
"dev": "env NODE_ENV=development gulp build-dev && env NODE_ENV=development node ./lolisafe.js",
"dev:reload": "env NODE_ENV=development gulp watch",
"migrate": "node ./scripts/migrate.js",
"bump-versions": "node ./scripts/bump-versions.js",
"cf-purge": "node ./scripts/cf-purge.js",
"clean-up": "node ./scripts/clean-up.js",
"delete-expired": "node ./scripts/delete-expired.js",
"rebuild-hashes": "node ./scripts/rebuild-hashes.js",
"thumbs": "node ./scripts/thumbs.js",
"pull": "git pull && env NODE_ENV=production yarn",
"stash": "git stash || true",
"stash-pop": "git stash pop || true",
"rebuild-dependencies": "rm -f ./yarn.lock && yarn"
},
"dependencies": {
"abort-controller": "~3.0.0",
"bcrypt": "~5.1.0",
"better-sqlite3": "~8.1.0",
"blake3": "~2.1.7",
"chokidar": "~3.5.3",
"clamscan": "~2.1.2",
"content-disposition": "~0.5.4",
"etag": "~1.8.1",
"fastq": "~1.15.0",
"fluent-ffmpeg": "~2.1.2",
"fresh": "~0.5.2",
"fs-jetpack": "~5.1.0",
"helmet": "~6.0.1",
"hyper-express": "~6.5.8",
"jszip": "~3.10.1",
"knex": "~2.4.2",
"live-directory": "~2.3.2",
"markdown-it": "~13.0.1",
"node-fetch": "~2.6.9",
"nunjucks": "~3.2.4",
"parse-duration": "~1.0.3",
"randomstring": "~1.2.3",
"range-parser": "~1.2.1",
"rate-limiter-flexible": "~2.4.1",
"search-query-parser": "~1.6.0",
"sharp": "~0.31.3",
"systeminformation": "~5.17.12"
},
"devDependencies": {
"@ronilaukkarinen/gulp-stylelint": "~14.0.9",
"browserslist": "~4.21.5",
"bulma": "~0.9.4",
"cssnano": "~5.1.15",
"eslint": "~8.38.0",
"eslint-config-standard": "~17.0.0",
"eslint-plugin-compat": "~4.0.2",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-n": "~15.6.1",
"eslint-plugin-promise": "~6.1.1",
"gulp": "~4.0.2",
"gulp-buble": "~0.9.0",
"gulp-cli": "~2.3.0",
"gulp-dart-sass": "~1.0.2",
"gulp-eslint-new": "~1.7.2",
"gulp-if": "~3.0.0",
"gulp-nodemon": "~2.5.0",
"gulp-postcss": "~9.0.1",
"gulp-replace": "~1.1.4",
"gulp-sourcemaps": "~3.0.0",
"gulp-terser": "~2.1.0",
"postcss": "~8.4.21",
"postcss-preset-env": "~8.0.1",
"stylelint": "~14.16.1",
"stylelint-config-standard-scss": "~6.1.0"
},
"volta": {
"node": "18.16.0",
"yarn": "1.22.19"
}
}