forked from snapshot-labs/snapshot-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.89 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
{
"name": "snapshot",
"version": "0.1.0",
"scripts": {
"create": "graph create snapshot-labs/snapshot --node https://api.thegraph.com/deploy/",
"create-local": "graph create snapshot-labs/snapshot --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build": "graph build",
"deploy-studio": "graph deploy --studio snapshot",
"deploy": "graph deploy snapshot-labs/snapshot --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-kovan": "graph deploy snapshot-labs/snapshot-kovan subgraph.kovan.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-rinkeby": "graph deploy snapshot-labs/snapshot-rinkeby subgraph.rinkeby.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-matic": "graph deploy snapshot-labs/snapshot-polygon subgraph.matic.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-bsc": "graph deploy snapshot-labs/snapshot-binance-smart-chain subgraph.bsc.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-gnosis-chain": "graph deploy snapshot-labs/snapshot-gnosis-chain subgraph.gnosis-chain.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-fantom": "graph deploy snapshot-labs/snapshot-fantom subgraph.fantom.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-local": "graph deploy snapshot-labs/snapshot --ipfs http://localhost:5001 --node http://127.0.0.1:8020"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.28.0",
"@graphprotocol/graph-ts": "^0.26.0"
},
"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"
}
}