forked from CounterpartyXCP/indexd-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 798 Bytes
/
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
{
"name": "counterparty-indexd-server",
"version": "0.0.1",
"description": "Bitcoin address index service",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Counterparty Developers",
"license": "MIT",
"dependencies": {
"bech32": "^1.1.3",
"bitcoinjs-lib": "git+https://github.com/vittoj/bitcoinjs-lib#v3.3.6",
"bchaddrjs": "^0.3.2",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"indexd": "git+https://github.com/vittoj/indexd#v0.9.10",
"leveldown": "^4.0.1",
"qup": "^1.2.1",
"run-parallel": "^1.1.6",
"yajrpc": "^1.4.4",
"zeromq": "^5.1.0"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}