This repository has been archived by the owner on Feb 4, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.99 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
{
"name": "@blitzbank/dashboard",
"version": "0.1.2",
"description": "Dashboard for your Bitcoind/LND full node.",
"author": "Dennis Reimann <[email protected]> (https://dennisreimann.de)",
"scripts": {
"build": "npm run cleanup && vue-cli-service build",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"cleanup": "rimraf dist",
"release": "npm run lint && npm test && npm run build && npm publish",
"start": "npm run cleanup && nodemon --exec 'vue-cli-service serve'",
"start:prod": "$npm_package_bin_blitzbank",
"test:e2e": "vue-cli-service test:e2e"
},
"main": "server/index.js",
"files": [
"bin",
"dist",
"server"
],
"dependencies": {
"axios": "0.19.0",
"bitcoin-units": "0.3.0",
"bitcoind-rpc": "0.8.1",
"bufferutil": "4.0.1",
"camelize-keys": "1.0.0",
"clipboard": "2.0.4",
"connect-history-api-fallback": "1.6.0",
"cross-env": "6.0.3",
"date-fns": "2.8.1",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-session": "1.17.0",
"filesize": "6.0.1",
"ln-service": "47.7.0",
"lndconnect": "0.2.10",
"morgan": "1.9.1",
"passport": "0.4.1",
"passport-local": "1.0.0",
"qrcode": "1.4.4",
"register-service-worker": "1.6.2",
"systeminformation": "4.16.0",
"vue": "2.6.11",
"vue-native-websocket": "2.0.13",
"vue-router": "3.1.3",
"vuex": "3.1.2",
"utf-8-validate": "5.0.2",
"ws": "7.2.1"
},
"devDependencies": {
"@babel/core": "7.7.5",
"@vue/cli-plugin-babel": "4.1.1",
"@vue/cli-plugin-e2e-cypress": "4.1.1",
"@vue/cli-plugin-eslint": "4.1.1",
"@vue/cli-plugin-pwa": "4.1.1",
"@vue/cli-plugin-unit-jest": "4.1.1",
"@vue/cli-service": "4.1.1",
"@vue/eslint-config-standard": "5.0.1",
"@vue/test-utils": "1.0.0-beta.30",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"eslint": "6.7.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-vue": "6.0.1",
"lint-staged": "9.5.0",
"nodemon": "2.0.2",
"rimraf": "3.0.0",
"standard": "14.3.1",
"vue-template-compiler": "2.6.11",
"webpack": "4.41.3",
"webpack-dev-server": "3.9.0"
},
"bin": {
"blitzbank": "./bin/blitzbank.sh"
},
"bugs": "https://github.com/dennisreimann/blitzbank-dashboard/issues",
"engines": {
"node": ">=10.13"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/dennisreimann/blitzbank-dashboard",
"keywords": [
"bitcoin",
"lnd",
"lightning",
"lightning-network",
"fullnode",
"dashboard",
"admin",
"blitzbank"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"npm run lint -- --fix",
"git add"
],
"*.vue": [
"npm run lint -- --fix",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"funding": "https://dennisreimann.de/donate.html",
"repository": "dennisreimann/blitzbank-dashboard"
}