mirror of
https://github.com/zoriya/flood.git
synced 2025-12-05 23:06:20 +00:00
235 lines
7.1 KiB
JSON
235 lines
7.1 KiB
JSON
{
|
|
"name": "flood",
|
|
"version": "4.7.0",
|
|
"description": "A modern Web UI for various torrent clients with multi-user and multi-client support",
|
|
"keywords": [
|
|
"typescript",
|
|
"react",
|
|
"node",
|
|
"webui",
|
|
"web ui",
|
|
"rTorrent",
|
|
"qBittorrent",
|
|
"Transmission"
|
|
],
|
|
"private": false,
|
|
"license": "GPL-3.0-only",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jesec/flood.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jesec/flood/issues"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"node_modules",
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"README.md",
|
|
"SECURITY.md"
|
|
],
|
|
"bin": {
|
|
"flood": "dist/index.js"
|
|
},
|
|
"pkg": {
|
|
"assets": [
|
|
"dist/assets/**/*",
|
|
"dist/geoip-country.dat",
|
|
"dist/geoip-country6.dat"
|
|
],
|
|
"targets": [
|
|
"node14-linuxstatic-x64",
|
|
"node14-linuxstatic-arm64",
|
|
"node14-macos-x64",
|
|
"node14-macos-arm64",
|
|
"node14-win-x64",
|
|
"node14-win-arm64"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build-assets && npm run build-ts",
|
|
"build-assets": "node client/scripts/build.js",
|
|
"build-ts": "ncc build server/bin/start.ts -m -t -e geoip-country",
|
|
"build-pkg": "rm -rf dist && npm run build && pkg . --out-path dist-pkg",
|
|
"format-source": "prettier -w .",
|
|
"check-source-formatting": "prettier -c .",
|
|
"check-types": "tsc",
|
|
"lint": "NODE_ENV=development eslint --max-warnings 0 . --ext .js --ext .jsx --ext .ts --ext .tsx",
|
|
"prepack": "rm -rf dist && npm run build",
|
|
"start": "node --use_strict dist/index.js",
|
|
"start:development:client": "node client/scripts/development.js",
|
|
"start:development:server": "NODE_ENV=development TS_NODE_PROJECT=server/tsconfig.json ts-node-dev --transpile-only -r tsconfig-paths/register server/bin/start.ts",
|
|
"start:test:rtorrent": "node scripts/testsetup.js",
|
|
"test": "jest --forceExit",
|
|
"test:watch": "jest --watchAll --forceExit",
|
|
"test:client": "FLOOD_OPTION_port=4200 start-server-and-test start 4200 'cypress run'"
|
|
},
|
|
"dependencies": {
|
|
"geoip-country": "^4.0.91"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.15.8",
|
|
"@babel/eslint-parser": "^7.15.8",
|
|
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
"@babel/plugin-proposal-decorators": "^7.15.8",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
|
|
"@babel/preset-env": "^7.15.8",
|
|
"@babel/preset-react": "^7.14.5",
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
"@emotion/babel-plugin": "^11.3.0",
|
|
"@emotion/css": "^11.5.0",
|
|
"@emotion/react": "^11.5.0",
|
|
"@lingui/loader": "^3.12.1",
|
|
"@lingui/react": "^3.12.1",
|
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
|
|
"@types/bencode": "^2.0.1",
|
|
"@types/body-parser": "^1.19.1",
|
|
"@types/compression": "^1.7.2",
|
|
"@types/content-disposition": "^0.5.4",
|
|
"@types/cookie-parser": "^1.4.2",
|
|
"@types/create-torrent": "^5.0.0",
|
|
"@types/d3": "^7.1.0",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/express": "^4.17.13",
|
|
"@types/express-rate-limit": "^5.1.3",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/geoip-country": "^4.0.0",
|
|
"@types/http-errors": "^1.8.1",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/jsonwebtoken": "^8.5.5",
|
|
"@types/lodash": "^4.14.176",
|
|
"@types/morgan": "^1.9.3",
|
|
"@types/node": "^12.20.34",
|
|
"@types/overlayscrollbars": "^1.12.1",
|
|
"@types/parse-torrent": "^5.8.4",
|
|
"@types/passport": "^1.0.7",
|
|
"@types/passport-jwt": "^3.0.6",
|
|
"@types/react": "^17.0.31",
|
|
"@types/react-dom": "^17.0.10",
|
|
"@types/react-measure": "^2.0.8",
|
|
"@types/react-router-dom": "^5.3.1",
|
|
"@types/react-transition-group": "^4.4.4",
|
|
"@types/react-window": "^1.8.5",
|
|
"@types/spdy": "^3.4.5",
|
|
"@types/supertest": "^2.0.11",
|
|
"@types/tar-fs": "^2.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
"@typescript-eslint/parser": "^4.33.0",
|
|
"@vercel/ncc": "^0.31.1",
|
|
"autoprefixer": "^10.3.7",
|
|
"axios": "^0.23.0",
|
|
"babel-loader": "^8.2.3",
|
|
"bencode": "^2.0.2",
|
|
"body-parser": "^1.19.0",
|
|
"case-sensitive-paths-webpack-plugin": "2.4.0",
|
|
"chalk": "^4.1.2",
|
|
"classnames": "^2.3.1",
|
|
"compression": "^1.7.4",
|
|
"content-disposition": "^0.5.3",
|
|
"cookie-parser": "^1.4.5",
|
|
"create-torrent": "^5.0.1",
|
|
"css-loader": "^6.4.0",
|
|
"css-minimizer-webpack-plugin": "^3.1.1",
|
|
"d3-array": "^3.1.1",
|
|
"d3-scale": "^4.0.2",
|
|
"d3-selection": "^3.0.0",
|
|
"d3-shape": "^3.0.1",
|
|
"debug": "^4.3.2",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-airbnb": "^18.2.1",
|
|
"eslint-config-airbnb-typescript": "^14.0.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-config-react-app": "^7.0.0-next.91",
|
|
"eslint-import-resolver-webpack": "^0.13.2",
|
|
"eslint-webpack-plugin": "^3.0.1",
|
|
"express": "^4.17.1",
|
|
"express-rate-limit": "^5.5.0",
|
|
"fast-json-patch": "^3.1.0",
|
|
"fast-sort": "^3.0.3",
|
|
"feedsub": "^0.7.7",
|
|
"file-loader": "^6.2.0",
|
|
"form-data": "^4.0.0",
|
|
"frontmatter-markdown-loader": "^3.6.3",
|
|
"fs-extra": "^10.0.0",
|
|
"get-user-locale": "^1.4.0",
|
|
"hash-wasm": "^4.9.0",
|
|
"html-webpack-plugin": "^5.4.0",
|
|
"http-errors": "^1.8.0",
|
|
"jest": "^27.3.1",
|
|
"js-file-download": "^0.4.12",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"lodash": "^4.17.21",
|
|
"mini-css-extract-plugin": "^2.4.3",
|
|
"mobx": "^6.3.5",
|
|
"mobx-react": "^7.2.1",
|
|
"morgan": "^1.10.0",
|
|
"nedb-promises": "^5.0.1",
|
|
"overlayscrollbars": "^1.13.1",
|
|
"overlayscrollbars-react": "^0.2.3",
|
|
"parse-torrent": "^9.1.4",
|
|
"passport": "^0.5.0",
|
|
"passport-jwt": "^4.0.0",
|
|
"polished": "^4.1.3",
|
|
"postcss": "^8.3.11",
|
|
"postcss-loader": "^6.2.0",
|
|
"prettier": "^2.4.1",
|
|
"promise": "^8.1.0",
|
|
"query-string": "^6.14.1",
|
|
"rdndmb-html5-to-touch": "^7.0.0-alpha.4",
|
|
"react": "^17.0.2",
|
|
"react-dev-utils": "^12.0.0-next.47",
|
|
"react-dnd": "^13.1.1",
|
|
"react-dnd-html5-backend": "^12.1.1",
|
|
"react-dnd-multi-backend": "^7.0.0-alpha.4",
|
|
"react-dnd-touch-backend": "^12.0.0",
|
|
"react-dom": "^17.0.2",
|
|
"react-dropzone": "^11.4.2",
|
|
"react-measure": "^2.5.2",
|
|
"react-refresh": "^0.10.0",
|
|
"react-router": "^5.2.1",
|
|
"react-router-dom": "^5.3.0",
|
|
"react-transition-group": "^4.4.2",
|
|
"react-use": "^17.3.1",
|
|
"react-window": "^1.8.6",
|
|
"ress": "^4.0.0",
|
|
"sanitize-filename": "^1.6.3",
|
|
"sass": "^1.43.3",
|
|
"sass-loader": "^12.2.0",
|
|
"saxen": "^8.1.2",
|
|
"source-map-loader": "^3.0.0",
|
|
"spdy": "^4.0.2",
|
|
"style-loader": "^3.3.1",
|
|
"supertest": "^6.1.6",
|
|
"tar-fs": "^2.1.1",
|
|
"terser-webpack-plugin": "^5.2.4",
|
|
"tldts": "^5.7.49",
|
|
"ts-jest": "^27.0.7",
|
|
"ts-node-dev": "^1.1.8",
|
|
"tsconfig-paths": "^3.11.0",
|
|
"typed-emitter": "^1.4.0",
|
|
"typescript": "~4.4.4",
|
|
"use-query-params": "^1.2.3",
|
|
"webpack": "^5.59.1",
|
|
"webpack-dev-server": "^4.3.1",
|
|
"webpackbar": "^5.0.0-3",
|
|
"yargs": "^17.2.1",
|
|
"zod": "^3.11.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"browserslist": [
|
|
"> 2%",
|
|
"last 10 chrome version",
|
|
"last 5 firefox version",
|
|
"last 5 edge version",
|
|
"last 2 iOS version",
|
|
"last 2 Safari version"
|
|
],
|
|
"bundleDependencies": [
|
|
"geoip-country"
|
|
]
|
|
}
|