-
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.04 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.04 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": "own-subgraph",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"prepare:base-sepolia": "mustache config/base-sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:sepolia": "mustache config/sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:base": "mustache config/base.json subgraph.template.yaml > subgraph.yaml",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ own-subgraph",
"deploy-goldsky": "goldsky subgraph deploy own-subgraph-base/1.0.0 --path .",
"create-local": "graph create --node http://localhost:8020/ own-subgraph",
"remove-local": "graph remove --node http://localhost:8020/ own-subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 own-subgraph",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.97.0",
"@graphprotocol/graph-ts": "0.37.0"
},
"devDependencies": {
"matchstick-as": "0.6.0",
"mustache": "^4.2.0"
}
}