-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.15 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
26
27
28
29
{
"name": "skill-wallet-subgraph",
"version": "1.0.0",
"keywords": [
"ethereum",
"distributed-town",
"skill-wallet"
],
"private": true,
"scripts": {
"run-node": "cd docker/graph-node && docker-compose up",
"remove-node": "cd docker/graph-node && docker-compose down",
"codegen": "graph codegen",
"build": "graph build",
"prepare:matic": "mustache config/maticMainnet.json subgraph/src/subgraph.template.yaml > subgraph.yaml",
"prepare:mumbai": "mustache config/maticTestnet.json subgraph/src/subgraph.template.yaml > subgraph.yaml",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ skillwallet/skill-wallet",
"create-local": "graph create --node http://localhost:8020/ SkillWallet/SkillWallet",
"remove-local": "graph remove --node http://localhost:8020/ SkillWallet/SkillWallet",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 skillwallet/skill-wallet"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.18.0",
"@graphprotocol/graph-ts": "0.20.0"
},
"devDependencies": {
"mustache": "^3.1.0"
}
}