-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.01 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.01 KB
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
{
"name": "subgraph",
"version": "0.1.0",
"scripts": {
"build": "graph build",
"build-contract": "truffle build",
"create": "graph create public-annotation-network/subgraph --node https://api.thegraph.com/deploy/",
"create-local": "graph create public-annotation-network/subgraph --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"deploy": "graph deploy public-annotation-network/subgraph --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-local": "graph deploy public-annotation-network/subgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"migrate:rinkeby": "truffle migrate --network rinkeby",
"migrate:ropsten": "truffle migrate --network ropsten"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.18.0",
"@graphprotocol/graph-ts": "^0.18.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"truffle": "^5.1.34",
"truffle-hdwallet-provider": "^1.0.4"
}
}