This repository was archived by the owner on Sep 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "slpdb",
"version": "1.0.0-rc8",
"description": "Indexer for the Simple Ledger Protocol with real-time validation notifications.",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 1000000 --exit --require mocha-steps",
"start": "node --nolazy -r ts-node/register --max_old_space_size=8192 index run",
"lint": "./node_modules/.bin/eslint .",
"migrate": "./node_modules/.bin/migrate-mongo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simpleledger/SLPDB.git"
},
"keywords": [
"SLP"
],
"author": "James Cramer",
"license": "MIT",
"bugs": {
"url": "https://github.com/simpleledger/SLPDB/issues"
},
"homepage": "https://github.com/simpleledger/SLPDB#readme",
"dependencies": {
"@types/dotenv": "^6.1.0",
"@types/ip": "^1.1.0",
"@types/js-yaml": "^3.12.3",
"@types/mongodb": "^3.5.5",
"@types/node": "^10.17.18",
"@types/p-limit": "2.0.0",
"@types/p-queue": "3.1.0",
"@types/zeromq": "^4.6.3",
"bcash": "^1.1.1",
"bignumber.js": "^9.0.0",
"bitbox-sdk": "8.2.1",
"bitcoin-rpc-promise-retry": "^1.3.0",
"bitcore-lib-cash": "^0.19.0",
"bufio": "^1.0.4",
"cashaddrjs-slp": "^0.2.12",
"dotenv": "^6.0.0",
"fountainhead-core": "0.0.4",
"grpc-bchrpc-node": "^0.10.0",
"iconv-lite": "^0.4.24",
"ip": "^1.1.5",
"js-yaml": "^3.13.1",
"level": "^5.0.1",
"migrate-mongo": "^5.0.1",
"mingo": "^2.5.3",
"mongodb": "^3.5.5",
"node-jq": "1.6.0",
"os-utils": "0.0.14",
"p-limit": "2.0.0",
"p-queue": "3.1.0",
"slpjs": "0.27.4",
"synchronized-promise": "0.2.0",
"traverse": "^0.6.6",
"ts-node": "^7.0.1",
"typescript": "^3.8.3",
"zeromq": "^5.2.0"
},
"devDependencies": {
"@types/mocha": "^5.1.1",
"eslint": "^5.6.1",
"mocha": "^7.1.1",
"source-map-support": "^0.5.16",
"mocha-steps": "^1.3.0"
}
}