thunderhub/package.json

203 lines
6.5 KiB
JSON
Raw Normal View History

{
"name": "thunderhub",
2023-09-12 16:42:54 +02:00
"version": "0.13.23",
2021-12-08 04:16:40 +01:00
"description": "Lightning Node Manager",
"license": "MIT",
"scripts": {
2021-12-11 02:41:01 +01:00
"prebuild": "rimraf dist && rimraf .next",
2021-12-08 04:16:40 +01:00
"build": "npm run build:nest && npm run build:next",
"build:nest": "nest build",
"build:next": "cd src/client && next build",
"build:all": "sh ./scripts/buildMultiArchImage.sh",
2021-12-08 04:16:40 +01:00
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
2022-01-27 11:25:15 +01:00
"start": "cross-env NODE_ENV=production nest start",
2021-12-08 04:16:40 +01:00
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
2021-12-12 03:55:24 +01:00
"start:prod:env": "NODE_ENV=production node dist/main",
2022-01-28 13:10:31 +01:00
"release": "standard-version",
"release:test": "standard-version --dry-run",
"release:minor": "standard-version --release-as minor",
2021-12-08 04:16:40 +01:00
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
2022-05-04 17:08:03 +02:00
"lint:check": "eslint \"{src,apps,libs,test}/**/*.ts\"",
2021-07-04 19:32:38 +02:00
"lint-staged": "lint-staged",
"generate": "graphql-codegen --config codegen.yml",
2022-05-04 17:08:03 +02:00
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
2021-12-08 04:16:40 +01:00
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
2020-05-31 11:48:03 +02:00
"upgrade-latest": "npx npm-check -u",
2021-07-04 19:32:38 +02:00
"update": "sh ./scripts/updateToLatest.sh",
2022-12-01 16:53:58 +01:00
"build:image": "docker build --pull --rm -f Dockerfile -t thunderhub:testing '.'",
"build:image:base": "docker build --pull --rm -f Dockerfile --build-arg BASE_PATH=/thub -t thunderhub:testing .",
2021-07-04 19:32:38 +02:00
"prepare": "husky install"
},
"dependencies": {
2023-09-01 23:33:30 +02:00
"@apollo/client": "^3.8.2",
2022-02-14 11:39:31 +01:00
"@fullerstack/nax-ipware": "^0.10.0",
2023-08-19 17:57:56 +02:00
"@nestjs/apollo": "^12.0.7",
2023-09-01 23:33:30 +02:00
"@nestjs/common": "^10.2.4",
"@nestjs/config": "^3.0.1",
"@nestjs/core": "^10.2.4",
2023-08-19 17:57:56 +02:00
"@nestjs/graphql": "^12.0.8",
2023-09-01 23:33:30 +02:00
"@nestjs/jwt": "^10.1.1",
"@nestjs/passport": "^10.0.1",
"@nestjs/platform-express": "^10.2.4",
"@nestjs/platform-socket.io": "^10.2.4",
"@nestjs/schedule": "^3.0.3",
2023-08-19 17:57:56 +02:00
"@nestjs/throttler": "^4.2.1",
2023-09-01 23:33:30 +02:00
"@nestjs/websockets": "^10.2.4",
2023-08-19 17:57:56 +02:00
"@tanstack/react-table": "^8.9.3",
2023-09-01 23:33:30 +02:00
"apollo-server-express": "^3.12.1",
"balanceofsatoshis": "^15.10.0",
2020-07-15 12:14:16 +02:00
"bcryptjs": "^2.4.3",
2021-12-12 03:55:24 +01:00
"bech32": "^2.0.0",
2022-07-28 05:12:28 +02:00
"big.js": "^6.2.1",
2023-05-26 11:05:20 +02:00
"bip32": "^4.0.0",
"bip39": "^3.1.0",
2023-08-19 17:57:56 +02:00
"bitcoinjs-lib": "^6.1.3",
2023-05-26 11:05:20 +02:00
"boltz-core": "^0.6.2",
2022-05-04 13:42:34 +02:00
"cookie": "^0.5.0",
2022-01-30 13:42:10 +01:00
"cross-env": "^7.0.3",
2021-07-24 12:03:30 +02:00
"crypto-js": "^4.1.1",
2023-08-19 17:57:56 +02:00
"d3-array": "^3.2.4",
2021-12-12 03:55:24 +01:00
"d3-time-format": "^4.1.0",
2023-08-19 23:59:10 +02:00
"dataloader": "^2.2.2",
2023-05-26 11:05:20 +02:00
"date-fns": "^2.30.0",
2023-08-19 17:57:56 +02:00
"dotenv": "^16.3.1",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
2022-01-11 16:21:30 +01:00
"ecpair": "^2.0.1",
2023-08-19 17:57:56 +02:00
"graphql": "^16.8.0",
2021-12-08 04:16:40 +01:00
"jest-fetch-mock": "^3.0.3",
2023-05-26 11:05:20 +02:00
"js-cookie": "^3.0.5",
2021-12-12 03:55:24 +01:00
"js-yaml": "^4.1.0",
2023-09-01 23:33:30 +02:00
"jsonwebtoken": "^9.0.2",
"lightning": "^9.13.1",
2021-07-04 15:38:47 +02:00
"lodash": "^4.17.21",
2023-09-01 23:33:30 +02:00
"nest-winston": "^1.9.4",
2023-08-19 17:57:56 +02:00
"next": "^13.4.19",
"node-fetch": "^3.3.2",
"numeral": "^2.0.6",
2021-12-16 23:26:38 +01:00
"otplib": "^12.0.1",
2022-06-23 16:11:29 +02:00
"passport": "^0.6.0",
2023-05-26 11:05:20 +02:00
"passport-jwt": "^4.0.1",
2022-07-28 05:12:28 +02:00
"qrcode.react": "^3.1.0",
2023-05-26 11:05:20 +02:00
"react": "^18.2.0",
2022-07-28 05:12:28 +02:00
"react-circular-progressbar": "^2.1.0",
2022-05-04 13:42:34 +02:00
"react-copy-to-clipboard": "^5.1.0",
2023-05-26 11:05:20 +02:00
"react-dom": "^18.2.0",
2022-06-23 16:11:29 +02:00
"react-feather": "^2.0.10",
2022-02-23 13:57:39 +01:00
"react-grid-layout": "^1.3.4",
2023-05-26 11:05:20 +02:00
"react-is": "^18.2.0",
2023-08-19 17:57:56 +02:00
"react-select": "^5.7.4",
"react-slider": "^2.0.6",
2023-05-26 11:05:20 +02:00
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
2023-08-19 17:57:56 +02:00
"react-tooltip": "^5.21.1",
2021-12-08 04:16:40 +01:00
"reflect-metadata": "^0.1.13",
2023-05-26 11:05:20 +02:00
"rimraf": "^5.0.1",
2022-07-28 05:12:28 +02:00
"rxjs": "^7.5.6",
2023-05-26 11:05:20 +02:00
"secp256k1": "^5.0.0",
2023-08-19 17:57:56 +02:00
"socket.io-client": "^4.7.2",
2023-05-26 11:05:20 +02:00
"socks-proxy-agent": "^8.0.1",
"styled-components": "^5.3.11",
"styled-react-modal": "^3.0.1",
"styled-theming": "^2.2.0",
2023-08-19 17:57:56 +02:00
"tiny-secp256k1": "^2.2.3",
"uuid": "^9.0.0",
2023-08-19 17:57:56 +02:00
"winston": "^3.10.0"
},
"devDependencies": {
2023-08-19 17:57:56 +02:00
"@graphql-codegen/cli": "^5.0.0",
2023-05-26 11:05:20 +02:00
"@graphql-codegen/fragment-matcher": "^5.0.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/near-operation-file-preset": "^2.5.0",
2023-08-19 17:57:56 +02:00
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
2023-08-19 17:57:56 +02:00
"@graphql-codegen/typescript-resolvers": "^4.0.1",
2023-09-01 23:33:30 +02:00
"@nestjs/cli": "^10.1.17",
2023-08-19 17:57:56 +02:00
"@nestjs/schematics": "^10.0.2",
2023-09-01 23:33:30 +02:00
"@types/bcryptjs": "^2.4.3",
2023-08-19 17:57:56 +02:00
"@types/big.js": "^6.2.0",
2022-05-04 13:42:34 +02:00
"@types/cookie": "^0.5.1",
2023-09-01 23:33:30 +02:00
"@types/cron": "^2.4.0",
2022-02-23 13:57:39 +01:00
"@types/crypto-js": "^4.1.1",
2023-09-01 23:33:30 +02:00
"@types/d3-array": "^3.0.7",
2021-10-31 11:51:38 +01:00
"@types/d3-time-format": "^4.0.0",
2023-05-26 11:05:20 +02:00
"@types/express": "^4.17.17",
2023-09-01 23:33:30 +02:00
"@types/jest": "^29.5.4",
2023-05-26 11:05:20 +02:00
"@types/js-cookie": "^3.0.3",
2021-12-12 03:55:24 +01:00
"@types/js-yaml": "^4.0.5",
2023-05-26 11:05:20 +02:00
"@types/jsonwebtoken": "^9.0.2",
2023-08-19 17:57:56 +02:00
"@types/lodash": "^4.14.197",
2023-09-01 23:33:30 +02:00
"@types/node": "^20.5.8",
2021-09-28 08:45:21 +02:00
"@types/numeral": "^2.0.2",
2023-09-01 23:33:30 +02:00
"@types/qrcode.react": "^1.0.3",
"@types/react": "^18.2.21",
2022-07-28 05:12:28 +02:00
"@types/react-copy-to-clipboard": "^5.0.4",
2022-02-23 13:57:39 +01:00
"@types/react-grid-layout": "^1.3.2",
2021-07-24 12:03:30 +02:00
"@types/react-qr-reader": "^2.1.4",
"@types/react-slider": "^1.3.1",
"@types/secp256k1": "^4.0.3",
2022-09-01 18:34:16 +02:00
"@types/styled-components": "^5.1.26",
2022-01-11 16:21:30 +01:00
"@types/styled-react-modal": "^1.2.2",
2020-08-05 21:24:46 +02:00
"@types/styled-theming": "^2.2.5",
2022-04-04 11:16:02 +02:00
"@types/supertest": "^2.0.12",
2023-09-01 23:33:30 +02:00
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"apollo-server": "^3.12.1",
2023-08-19 17:57:56 +02:00
"babel-plugin-styled-components": "^2.1.4",
2023-09-01 23:33:30 +02:00
"eslint": "^8.48.0",
2023-08-19 17:57:56 +02:00
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
2023-05-26 11:05:20 +02:00
"husky": "^8.0.3",
2023-09-01 23:33:30 +02:00
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
2021-12-12 03:55:24 +01:00
"source-map-support": "^0.5.21",
2022-05-30 14:39:45 +02:00
"standard-version": "^9.5.0",
2023-05-26 11:05:20 +02:00
"supertest": "^6.3.3",
2023-08-19 17:57:56 +02:00
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
2022-07-28 05:12:28 +02:00
"ts-node": "^10.9.1",
2023-05-26 11:05:20 +02:00
"tsconfig-paths": "^4.2.0",
2023-09-01 23:33:30 +02:00
"typescript": "^5.2.2",
2023-05-26 11:05:20 +02:00
"ws": "^8.13.0"
},
2021-12-08 04:16:40 +01:00
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"lint-staged": {
"*.+(ts|tsx)": [
"prettier --write",
2022-05-05 16:25:34 +02:00
"jest --bail --findRelatedTests --passWithNoTests",
"eslint --fix"
]
2020-08-16 18:30:53 +02:00
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
2020-05-07 19:19:08 +02:00
}