forked from CounterpartyXCP/indexd-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 733 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 733 Bytes
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.3",
"description": "Bitcoin (and some altcoins) 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": "^4.0.5",
"coininfo": "^4.5.0",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.18.1",
"indexd": "^0.9.0",
"leveldown": "^4.0.1",
"qup": "^1.2.1",
"run-parallel": "^1.2.0",
"yajrpc": "^1.4.4",
"zmq": "^2.15.3"
},
"devDependencies": {
"nodemon": "^1.19.4"
}
}