mempool/backend/package.json

49 lines
1.3 KiB
JSON
Raw Normal View History

2019-07-21 16:59:47 +02:00
{
"name": "mempool-backend",
2022-06-10 15:43:30 +02:00
"version": "2.4.1-dev",
"description": "Bitcoin mempool visualizer and blockchain explorer backend",
2021-03-18 08:29:11 +01:00
"license": "GNU Affero General Public License v3.0",
"homepage": "https://mempool.space",
"repository": {
"type": "git",
"url": "git+https://github.com/mempool/mempool"
},
"bugs": {
"url": "https://github.com/mempool/mempool/issues"
},
"keywords": [
"bitcoin",
"mempool",
"blockchain",
"explorer",
"liquid"
],
2019-07-21 16:59:47 +02:00
"main": "index.ts",
"scripts": {
"ng": "./node_modules/@angular/cli/bin/ng",
"tsc": "./node_modules/typescript/bin/tsc",
"build": "npm run tsc",
"start": "node --max-old-space-size=2048 dist/index.js",
"start-production": "node --max-old-space-size=4096 dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
2019-07-21 16:59:47 +02:00
},
"dependencies": {
"@mempool/electrum-client": "^1.1.7",
2022-04-28 12:37:58 +02:00
"axios": "~0.27.2",
2021-12-09 10:24:29 +01:00
"bitcoinjs-lib": "6.0.1",
2020-12-22 00:04:31 +01:00
"crypto-js": "^4.0.0",
2022-04-28 12:37:58 +02:00
"express": "^4.18.0",
2021-12-09 10:24:29 +01:00
"mysql2": "2.3.3",
2022-04-28 12:37:58 +02:00
"node-worker-threads-pool": "^1.5.1",
"socks-proxy-agent": "^6.2.0",
2022-05-27 13:34:58 +02:00
"typescript": "~4.7.2",
"ws": "~8.7.0"
2019-07-21 16:59:47 +02:00
},
"devDependencies": {
2022-04-28 12:37:58 +02:00
"@types/compression": "^1.7.2",
"@types/ws": "~8.5.3",
"@types/express": "^4.17.13",
"tslint": "^6.1.0"
2019-07-21 16:59:47 +02:00
}
}