-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.09 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
{
"name": "the-index",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/orbs-network/the-index.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbs-network/the-index/issues"
},
"homepage": "https://github.com/orbs-network/the-index#readme",
"dependencies": {
"@ethereumjs/block": "^3.2.1",
"@ethereumjs/blockchain": "^5.2.1",
"@ethereumjs/common": "^2.2.0",
"@ethereumjs/tx": "^3.1.4",
"@ethereumjs/vm": "^5.3.2",
"bignumber.js": "^9.0.1",
"chalk": "^2.4.2",
"ethereumjs-util": "^7.0.10",
"fs-extra": "^7.0.1",
"level": "^6.0.0",
"lodash": "^4.17.21",
"merkle-patricia-tree": "^4.2.0",
"multiaddr": "^8.1.2",
"node-fetch": "^2.6.1",
"pg": "^8.6.0",
"qheap": "^1.4.0",
"redis": "^3.1.2",
"rlp": "^2.2.4",
"socket.io-client": "^2.4.0",
"web3": "^1.3.6"
},
"devDependencies": {
"@types/lodash": "^4.14.170",
"@types/node": "^10.17.24",
"@types/node-fetch": "^2.3.7",
"hardhat": "^2.3.0",
"hardhat-web3": "^1.0.1",
"prettier": "^2.3.0",
"ts-generator": "^0.1.1",
"ts-node": "^10.1.0",
"typescript": "^4.2.4"
},
"prettier": {
"printWidth": 120
},
"scripts": {
"prettier": "prettier --write 'src/**/*.{ts,js,json,sol}'",
"rlp-read": "ts-node ./src/debug/rlp-read.ts",
"test-schema": "THE_INDEX_DATA_DIR=/data/rlp node --max-old-space-size=108096 -- node_modules/.bin/ts-node ./src/schema-indexer/test/index.ts",
"pipeline": "THE_INDEX_DATA_DIR=/data/rlp node --max-old-space-size=108096 -- node_modules/.bin/ts-node ./src/pipeline/build.ts",
"pipeline-lite": "THE_INDEX_DATA_DIR=/data/rlp2 node --max-old-space-size=108096 -- node_modules/.bin/ts-node ./src/pipeline/build-lite.ts",
"score-redis-2-quest":"node --max-old-space-size=108096 -- node_modules/.bin/ts-node ./src/pipeline/score-job.ts",
"run-coins": "THE_INDEX_DATA_DIR=/data/rlp node --max-old-space-size=108096 -- node_modules/.bin/ts-node ./src/pipeline/run-coins.ts"
}
}