This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "devp2p-network",
"version": "1.0.0",
"description": "A devp2p node indexer",
"main": "app.js",
"dependencies": {
"ajv": "^6.10.2",
"assert": "^1.5.0",
"chalk": "^2.4.2",
"crypto": "^1.0.1",
"ethereum-common": "^0.2.1",
"ethereum-tx-decoder": "^1.0.2",
"ethereumjs-block": "^1.7.1",
"ethereumjs-common": "^0.6.1",
"ethereumjs-devp2p": "^2.5.1",
"ethereumjs-tx": "^1.3.7",
"geoip-lite": "^1.3.7",
"isomorphic-fetch": "^2.2.1",
"kinesalite": "^2.0.0",
"leveldown": "^4.0.2",
"levelup": "^3.1.1",
"lodash": "^4.17.20",
"lru-cache": "^4.1.5",
"moment": "^2.24.0",
"ms": "^2.1.1",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rlp": "^2.2.3",
"rlp-encoding": "^3.0.0",
"safe-buffer": "^5.1.2",
"sequelize": "^5.15.1",
"web3": "^1.0.0-beta.55",
"yargs": "^13.3.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-google": "^0.11.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"scripts": {
"start": "INFURA_ID=09bcdf3656ee4a80b05a4a921358d109 node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "DEBUG=devp2p:rplx:*,devp2p:dlt*,infura:* INFURA_ID=09bcdf3656ee4a80b05a4a921358d109 node --inspect index.js"
},
"author": {
"name": "E.G. Galano",
"email": "[email protected]",
"url": "https://infura.io"
},
"license": "Apache-2.0"
}