mempool/backend/package.json

44 lines
1017 B
JSON
Raw Normal View History

2019-07-21 17:59:47 +03:00
{
"name": "mempool-backend",
"version": "2.0.0",
"description": "Bitcoin mempool visualizer and blockchain explorer backend",
"license": "MIT",
"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 17:59:47 +03:00
"main": "index.ts",
"scripts": {
"build": "tsc",
2020-10-25 22:21:47 +09:00
"start": "node --max-old-space-size=4096 dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
2019-07-21 17:59:47 +03:00
},
"dependencies": {
2020-10-26 15:59:28 +07:00
"express": "4.17.1",
"locutus": "2.0.12",
"mysql2": "1.6.1",
"node-worker-threads-pool": "1.4.3",
"request": "2.88.2",
"ws": "7.3.1"
2019-07-21 17:59:47 +03:00
},
"devDependencies": {
2020-10-26 15:59:28 +07:00
"@types/express": "4.17.2",
"@types/locutus": "0.0.6",
"@types/request": "2.48.2",
"@types/ws": "6.0.4",
"tslint": "6.1.0",
"typescript": "3.9.7"
2019-07-21 17:59:47 +03:00
}
}