forked from janoside/btc-rpc-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.23 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
{
"name": "btc-rpc-explorer",
"version": "3.1.1",
"description": "Open-source, self-hosted Bitcoin explorer",
"private": false,
"bin": "bin/cli.js",
"scripts": {
"start": "node ./bin/www",
"miners": "node ./bin/refresh-mining-pool-configs.js",
"integrity": "node ./bin/frontend-resource-integrity.js",
"css-light-debug": "node-sass --output-style expanded --source-map scss --precision 6 ./public/scss/light.scss ./public/style/light.css",
"css-dark-debug": "node-sass --output-style expanded --source-map scss --precision 6 ./public/scss/dark.scss ./public/style/dark.css",
"css-debug": "npm-run-all css-light-debug css-dark-debug",
"css-light": "node-sass --output-style compressed --precision 6 ./public/scss/light.scss ./public/style/light.css",
"css-dark": "node-sass --output-style compressed --precision 6 ./public/scss/dark.scss ./public/style/dark.css",
"css": "npm-run-all css-light css-dark"
},
"keywords": [
"bitcoin",
"btc",
"blockchain"
],
"author": "Dan Janosik <dan@47.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/janoside/btc-rpc-explorer.git"
},
"dependencies": {
"async": "^3.2.0",
"axios": "^0.21.1",
"basic-auth": "^2.0.1",
"bitcoinjs-lib": "^5.2.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bootstrap": "5.0.1",
"btc-rpc-client": "github:btc21/btc-rpc-client",
"compression": "1.7.4",
"cookie-parser": "^1.4.5",
"crypto-js": "^4.0.0",
"csurf": "^1.11.0",
"debug": "^4.3.1",
"decimal.js": "^10.2.1",
"dotenv": "^10.0.0",
"electrum-client": "github:janoside/electrum-client",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-session": "^1.17.2",
"jstransformer-markdown-it": "^2.1.0",
"lru-cache": "6.0.0",
"markdown-it": "^12.0.6",
"md5": "^2.3.0",
"meow": "^9.0.0",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"morgan": "^1.10.0",
"on-headers": "1.0.2",
"pidusage": "2.0.21",
"pug": "^3.0.2",
"qrcode": "^1.4.4",
"redis": "^3.0.2",
"request": "^2.88.2",
"semver": "^7.3.5",
"serve-favicon": "^2.5.0",
"simple-git": "^2.39.0"
},
"optionalDependencies": {
"event-loop-stats": "^1.3.0"
},
"devDependencies": {
"node-sass": "^6.0.0",
"npm-run-all": "^4.1.5"
}
}