This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 4.01 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
{
"name": "lndboss",
"version": "2.19.1",
"description": "Web Application for BalanceOfSatoshis",
"author": {
"name": "Nitesh Balusu",
"url": "https://twitter.com/nitesh_btc"
},
"license": "MIT",
"keywords": [
"bitcoin",
"balanceofsatoshis",
"lnd",
"lightning",
"lightning-network"
],
"scripts": {
"prebuild": "rimraf dist && rimraf src/client/.next",
"build:prod": "yarn prebuild && yarn build:nest && yarn build:next",
"build:nest": "nest build",
"build:next": "cd src/client && next build",
"dev": "NODE_ENV=development nest start --watch",
"docker:build": "docker build -t niteshbalusu/lndboss . && docker save niteshbalusu/lndboss > lndboss.tar && gzip lndboss.tar",
"docker:release": "docker buildx build --file Dockerfile --platform linux/arm64,linux/amd64 --no-cache -t niteshbalusu/lndboss:$npm_package_version --push .",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"push:github": "git push --follow-tags origin master",
"start": "NODE_ENV=production nest start ",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_ENV=production node dist/server/main",
"lint": "eslint \"{src/server,src/shared}/**/*.ts\"",
"next:lint": "next lint src/client",
"release": "standard-version --release-as minor && yarn build:prod && yarn publish",
"release:major": "standard-version --release-as major && yarn build:prod && yarn publish",
"release:patch": "standard-version --release-as patch && yarn build:prod && yarn publish",
"release:test": "standard-version --dry-run --release-as minor",
"test": "playwright test",
"test:client": "playwright test tests/client",
"test:server": "playwright test tests/server"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.13",
"@mui/x-date-pickers": "^5.0.13",
"@nestjs/common": "^9.3.10",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.10",
"@nestjs/jwt": "^9.0.0",
"@nestjs/passport": "^9.0.3",
"@nestjs/platform-express": "^9.3.10",
"@nestjs/platform-socket.io": "^9.3.10",
"@nestjs/schedule": "^2.2.0",
"@nestjs/websockets": "^9.3.10",
"antd": "^4.23.4",
"async": "^3.2.4",
"axios": "^0.27.2",
"balanceofsatoshis": "^15.8.11",
"bcryptjs": "^2.4.3",
"chart.js": "^4.2.1",
"class-sanitizer": "^1.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"json-to-pretty-yaml": "^1.2.2",
"jwt-decode": "^3.1.2",
"lightning": "^7.1.4",
"nest-winston": "^1.9.1",
"next": "^13.2.4",
"nookies": "^2.5.2",
"notiflix": "^3.2.6",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-js-cron": "^2.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"socket.io-client": "^4.6.1"
},
"devDependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"@nestjs/cli": "^9.3.0",
"@nestjs/schematics": "^9.0.4",
"@playwright/test": "^1.31.2",
"@types/async": "^3.2.18",
"@types/cron": "^2.0.1",
"@types/express": "^4.17.17",
"@types/node": "^18.15.5",
"@types/passport-local": "^1.0.35",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint": "^8.0.1",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"ln-docker-daemons": "^4.1.2",
"prettier": "^2.8.5",
"rimraf": "^4.4.0",
"source-map-support": "^0.5.20",
"standard-version": "^9.5.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "*"
}
}