-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
28 lines (28 loc) · 1007 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
23
24
25
26
27
28
{
"name": "example-near-blocks",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/graphprotocol/graph-tooling",
"directory": "examples/near-blocks"
},
"license": "MIT",
"private": true,
"scripts": {
"build": "graph build",
"codegen": "graph codegen",
"protoc": "protoc --plugin=./node_modules/protobuf-as/bin/protoc-gen-as --as_out=src/pb/ ./proto/*.proto",
"create": "graph create example --node https://api.thegraph.com/deploy/",
"create-local": "graph create example --node http://127.0.0.1:8020",
"deploy": "graph deploy example --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-local": "graph deploy example --ipfs http://localhost:5001 --node http://127.0.0.1:8020"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.66.0",
"@graphprotocol/graph-ts": "0.32.0",
"express": "^4.18.2"
},
"dependencies": {
"protobuf-as": "gravitational/protobuf-as"
}
}