This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
forked from apotdevin/thunderhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
212 lines (212 loc) · 6.98 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
{
"name": "thunderhub",
"version": "0.13.6",
"description": "Lightning Node Manager",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist && rimraf .next",
"build": "npm run build:nest && npm run build:next",
"build:nest": "nest build",
"build:next": "cd src/client && next build",
"build:image": "docker build -t apotdevin/thunderhub:test-amd64 .",
"build:image:base": "docker build --build-arg BASE_PATH=/thub -t apotdevin/thunderhub:test-amd64 .",
"build:32": "docker build -f arm32v7.Dockerfile -t apotdevin/thunderhub:test-arm32v7 .",
"build:64": "docker build -f arm64v8.Dockerfile -t apotdevin/thunderhub:test-arm64v8 .",
"build:manifest": "docker manifest create apotdevin/thunderhub:test apotdevin/thunderhub:test-amd64 apotdevin/thunderhub:test-arm32v7 apotdevin/thunderhub:test-arm64v8",
"build:all": "sh ./scripts/buildAllImages.sh",
"build:all:next": "sh ./scripts/buildAllNextImages.sh",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "cross-env NODE_ENV=production nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"start:prod:env": "NODE_ENV=production node dist/main",
"release": "standard-version",
"release:test": "standard-version --dry-run",
"release:minor": "standard-version --release-as minor",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint-staged": "lint-staged",
"generate": "graphql-codegen --config codegen.yml",
"test": "jest",
"test:watch": "jest --watch",
"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",
"upgrade-latest": "npx npm-check -u",
"update": "sh ./scripts/updateToLatest.sh",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@fullerstack/nax-ipware": "^0.10.0",
"@nestjs/apollo": "^10.0.2",
"@nestjs/common": "^8.2.6",
"@nestjs/config": "^1.1.7",
"@nestjs/core": "^8.2.6",
"@nestjs/graphql": "^10.0.2",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "^8.1.0",
"@nestjs/platform-express": "^8.2.6",
"@nestjs/platform-socket.io": "^8.2.6",
"@nestjs/throttler": "^2.0.0",
"@nestjs/websockets": "^8.2.6",
"@types/socket.io": "^3.0.2",
"@visx/axis": "^2.6.0",
"@visx/chord": "^2.1.2",
"@visx/event": "^2.6.0",
"@visx/group": "^2.1.0",
"@visx/responsive": "^2.8.0",
"@visx/scale": "^2.2.2",
"@visx/shape": "^2.4.0",
"@visx/tooltip": "^2.8.0",
"apollo-server-express": "^3.6.3",
"balanceofsatoshis": "^11.52.5",
"bcryptjs": "^2.4.3",
"bech32": "^2.0.0",
"big.js": "^6.1.1",
"bip32": "^3.0.1",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.1",
"boltz-core": "^0.5.0",
"cookie": "^0.4.2",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"d3-array": "^3.1.1",
"d3-time-format": "^4.1.0",
"date-fns": "^2.28.0",
"ecpair": "^2.0.1",
"graphql": "^15.8.0",
"jest-fetch-mock": "^3.0.3",
"js-cookie": "^3.0.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"ln-service": "^53.8.1",
"lodash": "^4.17.21",
"nest-winston": "^1.6.2",
"next": "^12.0.10",
"node-fetch": "^3.2.0",
"numeral": "^2.0.6",
"otplib": "^12.0.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-circular-progressbar": "^2.0.4",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-grid-layout": "^1.3.3",
"react-is": "^17.0.2",
"react-qr-reader": "^2.2.1",
"react-select": "^5.2.2",
"react-slider": "^1.3.1",
"react-spinners": "^0.11.0",
"react-table": "^7.7.0",
"react-toastify": "^8.1.1",
"react-tooltip": "^4.2.21",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.4",
"secp256k1": "^4.0.3",
"sharp": "^0.30.1",
"socket.io-client": "^4.4.1",
"socks-proxy-agent": "^6.1.1",
"styled-components": "^5.3.3",
"styled-react-modal": "^3.0.0",
"styled-theming": "^2.2.0",
"tiny-secp256k1": "^2.2.0",
"uuid": "^8.3.2",
"winston": "^3.6.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.1",
"@graphql-codegen/fragment-matcher": "^3.2.1",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.2.4",
"@graphql-codegen/typescript": "^2.4.3",
"@graphql-codegen/typescript-operations": "^2.3.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.5",
"@graphql-codegen/typescript-resolvers": "^2.5.0",
"@nestjs/cli": "^8.2.0",
"@nestjs/schematics": "^8.0.6",
"@nestjs/testing": "^8.2.6",
"@types/bcryptjs": "^2.4.2",
"@types/big.js": "^6.1.3",
"@types/cookie": "^0.4.1",
"@types/crypto-js": "^4.1.0",
"@types/d3-array": "^3.0.2",
"@types/d3-time-format": "^4.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/js-cookie": "^3.0.1",
"@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.17",
"@types/node-fetch": "^3.0.3",
"@types/numeral": "^2.0.2",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^17.0.39",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-grid-layout": "^1.3.1",
"@types/react-qr-reader": "^2.1.4",
"@types/react-slider": "^1.3.1",
"@types/react-table": "^7.7.9",
"@types/secp256k1": "^4.0.3",
"@types/styled-components": "^5.1.22",
"@types/styled-react-modal": "^1.2.2",
"@types/styled-theming": "^2.2.5",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"apollo-server": "^3.6.3",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^8.9.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"source-map-support": "^0.5.21",
"standard-version": "^9.3.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"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",
"jest --bail --findRelatedTests",
"eslint --fix"
]
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
}