-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.3 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
{
"name": "ecns-subgraph",
"version": "1.2.0",
"repository": "https://github.com/portalnetwork/ecns-subgraph",
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "graph build",
"build-contract": "solcjs contracts/* --abi -o abis --overwrite && solcjs contracts/* --bin -o bin --overwrite",
"codegen": "graph codegen --output-dir src/types/",
"create-local": "graph create ecns-subgraph --node http://127.0.0.1:8020/",
"deploy-local": "graph deploy ecns-subgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020/",
"remove-local": "graph remove ecns-subgraph --node http://127.0.0.1:8020",
"watch-local": "graph deploy ecns-subgraph --watch --debug --node http://127.0.0.1:8020/ --ipfs http://localhost:5001",
"test": "truffle test"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.17.1",
"@graphprotocol/graph-ts": "^0.17.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"bluebird": "^3.7.2",
"eth-ens-namehash": "^2.0.8",
"openzeppelin-solidity": "2.1.3",
"truffle": "^5.0.4",
"truffle-contract": "^4.0.5",
"truffle-flattener": "^1.4.2",
"truffle-hdwallet-provider": "^1.0.4",
"truffle-privatekey-provider": "^1.3.0",
"web3": "^1.2.6",
"web3-utils": "^1.2.6"
}
}