-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
22 lines (22 loc) · 882 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node http://51.20.67.199:8020 mafia/subgraph",
"create-local": "graph create --node http://51.20.67.199:8020 framed/subgraphtest",
"create-docker": "graph create --node http://localhost:8020 mafia/subgraph",
"remove-local": "graph remove --node http://51.20.67.199:8020 mafia/subgraph",
"deploy-local": "graph deploy --node http://51.20.67.199:8020 --ipfs http://51.20.67.199:5001 framed/subgraphtest",
"deploy-docker": "graph deploy --node http://localhost:8020 --ipfs http://localhost:5001 mafia/subgraph",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.58.0",
"@graphprotocol/graph-ts": "^0.31.0"
},
"devDependencies": {
"matchstick-as": "0.5.0"
}
}