-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 963 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": "tap-v2",
"license": "Apache-2.0",
"engines": {
"node": "^18.0.0"
},
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:sepolia": "mustache config/sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:arb-sepolia": "mustache config/arb-sepolia.json subgraph.template.yaml > subgraph.yaml",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ tap-v2",
"create-local": "graph create --node http://localhost:8020/ tap-v2",
"remove-local": "graph remove --node http://localhost:8020/ tap-v2",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 tap-v2",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.87.0",
"@graphprotocol/graph-ts": "0.32.0",
"dotenv": "^16.4.5",
"mustache": "^4.2.0",
"util": "^0.12.5"
},
"devDependencies": {
"matchstick-as": "0.5.0"
}
}