btc-rpc-explorer/package.json

85 lines
2.6 KiB
JSON
Raw Permalink Normal View History

2017-07-21 19:42:13 -04:00
{
2020-06-22 14:55:36 -04:00
"name": "btc-rpc-explorer",
2025-07-02 10:45:02 -04:00
"version": "3.5.1",
2020-06-22 14:55:36 -04:00
"description": "Open-source, self-hosted Bitcoin explorer",
"private": false,
"bin": "bin/cli.js",
"scripts": {
"start": "node ./bin/www",
2021-09-27 15:41:22 -04:00
"test": "node ./bin/test.js",
2021-05-12 17:34:31 -04:00
"miners": "node ./bin/refresh-mining-pool-configs.js",
"integrity": "node ./bin/frontend-resource-integrity.js",
2023-11-08 11:56:43 -05:00
"lint": "eslint app routes",
"css-light-debug": "sass --style expanded ./public/scss/light.scss ./public/style/light.css",
"css-dark-debug": "sass --style expanded ./public/scss/dark.scss ./public/style/dark.css",
"css-dark-v1-debug": "sass --style expanded ./public/scss/dark-v1.scss ./public/style/dark-v1.css",
"css-debug": "npm run css-light-debug && npm run css-dark-debug && npm run css-dark-v1-debug",
"css-light": "sass --style compressed ./public/scss/light.scss ./public/style/light.min.css",
"css-dark": "sass --style compressed ./public/scss/dark.scss ./public/style/dark.min.css",
"css-dark-v1": "sass --style compressed ./public/scss/dark-v1.scss ./public/style/dark-v1.min.css",
"css": "npm run css-light && npm run css-dark && npm run css-dark-v1 && npm run integrity"
2020-06-22 14:55:36 -04:00
},
"keywords": [
2020-06-22 14:55:36 -04:00
"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": {
"@janoside/app-utils": "github:janoside/app-utils#ba4c23d3f",
2025-08-24 11:30:00 -04:00
"async": "^3.2.6",
"axios": "^1.11.0",
2020-06-22 14:55:36 -04:00
"basic-auth": "^2.0.1",
2021-07-29 09:19:30 -04:00
"bech32": "2.0.0",
"bip32": "^4.0.0",
2025-08-24 11:30:00 -04:00
"bitcoinjs-lib": "^6.1.7",
"body-parser": "^2.2.0",
"bootstrap": "^5.3.7",
"bs58check": "^4.0.0",
2025-08-24 11:30:00 -04:00
"chart.js": "^4.5.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
2023-11-06 15:44:05 -05:00
"crypto-js": "^4.2.0",
2025-08-24 11:30:00 -04:00
"csurf": "^1.11.0",
"debug": "^4.4.1",
"decimal.js": "^10.6.0",
2023-05-02 13:23:38 -04:00
"dotenv": "^13.0.1",
"electrum-client": "github:janoside/electrum-client",
2025-08-24 11:30:00 -04:00
"express": "^4.21.2",
2023-05-02 13:23:38 -04:00
"express-async-handler": "^1.2.0",
2025-08-24 11:30:00 -04:00
"express-rate-limit": "^8.0.1",
"express-session": "^1.18.2",
"jayson": "^4.2.0",
"lru-cache": "^10.4.3",
"markdown-it": "^14.1.0",
2020-12-13 11:37:10 -05:00
"md5": "^2.3.0",
"memorystore": "^1.6.7",
"meow": "^9.0.0",
2025-08-24 11:30:00 -04:00
"moment": "^2.30.1",
2020-06-22 14:55:36 -04:00
"moment-duration-format": "^2.3.2",
2025-08-24 11:30:00 -04:00
"morgan": "^1.10.1",
"on-headers": "^1.1.0",
"pidusage": "^4.0.1",
"pug": "^3.0.3",
"qrcode": "^1.5.4",
"redis": "^4.7.1",
"semver": "^7.7.2",
"serve-favicon": "^2.5.1",
"simple-git": "^3.28.0",
"tiny-secp256k1": "^2.2.4",
"zeromq": "^6.5.0"
2020-06-22 14:55:36 -04:00
},
2021-02-27 23:58:53 +02:00
"optionalDependencies": {
2023-05-02 13:23:38 -04:00
"event-loop-stats": "^1.4.1"
2021-02-27 23:58:53 +02:00
},
2020-06-22 14:55:36 -04:00
"devDependencies": {
2025-08-24 11:30:00 -04:00
"eslint": "^9.34.0",
"sass": "^1.90.0"
2020-06-22 14:55:36 -04:00
}
}