-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 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
{
"name": "moloch",
"version": "0.1.0",
"scripts": {
"test": "mocha --timeout 7000 test/subgraph.spec.js",
"build-contract": "solc contracts/Moloch.sol --abi -o abis --overwrite && solc contracts/Moloch.sol --bin -o bin --overwrite",
"create": "graph create daodesigner/moloch-subgraph --node https://api.thegraph.com/deploy/",
"create-local": "graph create daodesigner/moloch-subgraph --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy daodesigner/kovanddq --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-local": "graph deploy daodesigner/moloch-subgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"ganache-cli": "ganache-cli -l 99900000 -m 'fetch local valve black attend double eye excite planet primary install allow'"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.17.1",
"@graphprotocol/graph-ts": "^0.17.0",
"@types/node": "^13.5.1",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"ts-node": "^6.2.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@truffle/contract": "^4.0.5",
"@truffle/hdwallet-provider": "^1.0.4",
"babel-polyfill": "^6.26.0",
"dotenv": "^8.2.0",
"solc": "^0.5.3",
"truffle": "^5.0.5"
}
}