-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 850 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "subgraph",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"codegen": "npx graph codegen ./subgraph.template.yaml",
"deploy": "npx graph deploy --product hosted-service --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ *YOUR SUBGRAPH* ./subgraph.template.yaml --access-token *YOUR ACCESS TOKEN*",
"create-local": "npx graph create --node http://127.0.0.1:8020/ nft-subgraph",
"deploy-local": "npx graph deploy --node http://127.0.0.1:8020/ --ipfs http://127.0.0.1:5001/ nft-subgraph ./subgraph.template.yaml"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphprotocol/graph-cli": "^0.31.0",
"@graphprotocol/graph-ts": "^0.27.0",
"axios": "^0.27.2"
}
}