-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (64 loc) · 2.33 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
{
"name": "dgov-subgraph",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@gnosis.pm/util-contracts": "3.0.0-alpha.3",
"bignumber.js": "^9.0.1",
"decimal.js-light": "^2.5.1",
"@gnosis.pm/conditional-tokens-contracts": "^1.0.1",
"@gnosis.pm/conditional-tokens-market-makers": "^1.8.1",
"@gnosis.pm/truffle-nice-tools": "^1.3.1",
"@graphprotocol/graph-cli": "^0.24.0",
"@graphprotocol/graph-ts": "^0.24.0",
"@kleros/erc-792": "3.0.0",
"@kleros/gtcr-encoder": "^1.1.3",
"@kleros/tcr": "^1.9.2",
"@realitio/realitio-contracts": "github:cag/realitio-contracts",
"@uniswap/v2-core": "^1.0.1",
"axios": "^0.21.2",
"canonical-weth": "^1.4.0",
"delay": "^4.3.0",
"fs-extra": "^8.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"mocha": "^7.1.1",
"mocha-steps": "^1.3.0",
"mustache": "^4.0.1",
"prettier": "^2.2.1",
"realitio-gnosis-proxy": "github:gnosis/realitio-gnosis-proxy",
"replace-in-file": "^6.1.0",
"should": "^13.2.3",
"wait-on": "^4.0.1",
"web3": "^1.2.6",
"truffle": "^5.0.4",
"truffle-contract": "^4.0.5",
"truffle-hdwallet-provider": "^1.0.4",
"ipfs-core": "^0.12.2",
"ipfs-http-client": "^54.0.2"
},
"scripts": {
"build": "truffle compile",
"deploy": "truffle deploy",
"recreate": "truffle migrate -f 11",
"create": "graph create rembern/dgovgraph --node https://api.thegraph.com/deploy/",
"codegen": "graph codegen",
"build-graph": "graph build",
"create-local": "graph create --node http://localhost:8020/ unhappydog/testgraph",
"remove-local": "graph remove --node http://localhost:8020/ unhappydog/testgraph",
"deploy-graph": "graph deploy --node https://api.thegraph.com/deploy/ rembern/dgovgraph",
"deploy-local": "graph deploy --ipfs http://localhost:5001 --node http://127.0.0.1:8020 rembern/dgovgraph",
"build-scripts": "tsc scripts/createq.tsx",
"upload-config": "node scripts/createq.js",
"prepare:chapel":"mustache configs/chapel.json subgraph.template.yaml > subgraph.yaml",
"migrate:local":"truffle migrate --network local"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"truffle": "^5.0.4",
"truffle-contract": "^4.0.5",
"truffle-hdwallet-provider": "^1.0.4"
}
}