thunderhub/package.json

204 lines
6.5 KiB
JSON
Raw Normal View History

{
"name": "thunderhub",
2024-05-21 19:43:33 +02:00
"version": "0.13.31",
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-11-30 18:51:18 +01:00
"@apollo/client": "^3.8.8",
2022-02-14 11:39:31 +01:00
"@fullerstack/nax-ipware": "^0.10.0",
2023-11-30 18:51:18 +01:00
"@nestjs/apollo": "^12.0.11",
"@nestjs/common": "^10.2.10",
2023-11-05 15:41:35 +01:00
"@nestjs/config": "^3.1.1",
2023-11-30 18:51:18 +01:00
"@nestjs/core": "^10.2.10",
"@nestjs/graphql": "^12.0.11",
"@nestjs/jwt": "^10.2.0",
2023-11-05 15:41:35 +01:00
"@nestjs/passport": "^10.0.2",
2023-11-30 18:51:18 +01:00
"@nestjs/platform-express": "^10.2.10",
"@nestjs/platform-socket.io": "^10.2.10",
2023-11-05 15:41:35 +01:00
"@nestjs/schedule": "^4.0.0",
"@nestjs/throttler": "^5.0.1",
2023-11-30 18:51:18 +01:00
"@nestjs/websockets": "^10.2.10",
2023-11-05 15:41:35 +01:00
"@tanstack/react-table": "^8.10.7",
2024-03-07 23:51:36 +01:00
"@vulpemventures/secp256k1-zkp": "^3.2.1",
2023-11-30 18:51:18 +01:00
"apollo-server-express": "^3.13.0",
"balanceofsatoshis": "^17.5.2",
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-11-05 15:41:35 +01:00
"bitcoinjs-lib": "^6.1.5",
2024-03-07 23:51:36 +01:00
"boltz-core": "^2.1.1",
2023-11-30 18:51:18 +01:00
"cookie": "^0.6.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.5.0",
"echarts-for-react": "^3.0.2",
2022-01-11 16:21:30 +01:00
"ecpair": "^2.0.1",
2023-11-05 15:41:35 +01:00
"graphql": "^16.8.1",
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",
2023-11-30 18:51:18 +01:00
"lightning": "^10.1.3",
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-12-07 15:02:51 +01:00
"next": "^13.5.5",
2023-08-19 17:57:56 +02:00
"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",
2023-11-30 18:51:18 +01:00
"react-grid-layout": "^1.4.4",
2023-05-26 11:05:20 +02:00
"react-is": "^18.2.0",
2023-11-30 18:51:18 +01:00
"react-select": "^5.8.0",
2023-08-19 17:57:56 +02:00
"react-slider": "^2.0.6",
2023-05-26 11:05:20 +02:00
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
2023-11-30 18:51:18 +01:00
"react-tooltip": "^5.24.0",
2021-12-08 04:16:40 +01:00
"reflect-metadata": "^0.1.13",
2023-11-05 15:41:35 +01:00
"rimraf": "^5.0.5",
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",
2023-12-06 22:51:36 +01:00
"styled-components": "^6.1.1",
2023-05-26 11:05:20 +02:00
"styled-react-modal": "^3.0.1",
"styled-theming": "^2.2.0",
2023-12-06 22:51:36 +01:00
"stylis": "^4.3.0",
2023-08-19 17:57:56 +02:00
"tiny-secp256k1": "^2.2.3",
2023-11-05 15:41:35 +01:00
"uuid": "^9.0.1",
"winston": "^3.11.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",
2023-11-05 15:41:35 +01:00
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
2023-08-19 17:57:56 +02:00
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
2023-11-05 15:41:35 +01:00
"@graphql-codegen/typescript-react-apollo": "^4.1.0",
2023-08-19 17:57:56 +02:00
"@graphql-codegen/typescript-resolvers": "^4.0.1",
2023-11-05 15:41:35 +01:00
"@nestjs/cli": "^10.2.1",
"@nestjs/schematics": "^10.0.3",
2023-11-30 18:51:18 +01:00
"@types/bcryptjs": "^2.4.6",
"@types/big.js": "^6.2.2",
"@types/cookie": "^0.6.0",
2023-09-01 23:33:30 +02:00
"@types/cron": "^2.4.0",
2023-11-30 18:51:18 +01:00
"@types/crypto-js": "^4.2.1",
"@types/d3-array": "^3.2.1",
"@types/d3-time-format": "^4.0.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/js-cookie": "^3.0.6",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.1",
"@types/numeral": "^2.0.5",
"@types/qrcode.react": "^1.0.5",
"@types/react": "^18.2.39",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-grid-layout": "^1.3.5",
"@types/react-qr-reader": "^2.1.7",
"@types/react-slider": "^1.3.5",
"@types/secp256k1": "^4.0.6",
"@types/styled-react-modal": "^1.2.5",
"@types/styled-theming": "^2.2.8",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"apollo-server": "^3.13.0",
2023-08-19 17:57:56 +02:00
"babel-plugin-styled-components": "^2.1.4",
2023-11-30 18:51:18 +01:00
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
2023-08-19 17:57:56 +02:00
"eslint-config-prettier": "^9.0.0",
2023-11-05 15:41:35 +01:00
"eslint-plugin-prettier": "^5.0.1",
2023-05-26 11:05:20 +02:00
"husky": "^8.0.3",
2023-11-05 15:41:35 +01:00
"jest": "^29.7.0",
2023-11-30 18:51:18 +01:00
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
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",
2023-11-30 18:51:18 +01:00
"ts-loader": "^9.5.1",
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-11-30 18:51:18 +01:00
"typescript": "^5.3.2",
2023-11-05 15:41:35 +01:00
"ws": "^8.14.2"
},
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
}