-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "ln-dash",
"version": "0.11.0-beta.7",
"private": false,
"bin": "bin/cli.js",
"scripts": {
"start": "node ./bin/www",
"integrity": "node ./bin/frontend-resource-integrity.js",
"css-light-debug": "sass --style expanded --source-map scss ./public/scss/light.scss ./public/style/light.css",
"css-dark-debug": "sass --style expanded --source-map scss ./public/scss/dark.scss ./public/style/dark.css",
"css-debug": "npm-run-all css-light-debug css-dark-debug",
"css-light": "sass --style compressed ./public/scss/light.scss ./public/style/light.css",
"css-dark": "sass --style compressed ./public/scss/dark.scss ./public/style/dark.css",
"css": "npm-run-all css-light css-dark"
},
"keywords": [
"bitcoin",
"lightning network",
"dashboard",
"lnd",
"lightning network daemon"
],
"author": "Dan Janosik <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/janoside/lndash.git"
},
"dependencies": {
"@grpc/proto-loader": "^0.7.4",
"@grpc/grpc-js": "^1.3.7",
"axios": "^1.2.1",
"base64url": "3.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^5.1.3",
"cookie-parser": "^1.4.5",
"crypto-js": "^4.1.1",
"debug": "^4.3.2",
"decimal.js": "^10.3.1",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-session": "^1.17.2",
"hash.js": "1.1.7",
"latest-version": "^7.0.0",
"meow": "^9.0.0",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"qr-image": "3.2.0",
"qrcode": "^1.4.4",
"runes": "0.4.3",
"semver": "^7.3.5",
"serve-favicon": "^2.5.0",
"simple-git": "^3.15.1",
"untildify": "^4.0.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"sass": "^1.51.0"
}
}