-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1.85 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "aavegotchi-subgraph",
"version": "0.1.0",
"private": true,
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"codegen:testnet": "graph codegen subgraph.testnet.yaml",
"build:testnet": "graph build subgraph.testnet.yaml",
"prepare:matic": "mustache config/matic.json subgraph.template.yaml > subgraph.yaml",
"prepare:amoy": "mustache config/amoy.json subgraph.template.yaml > subgraph.yaml",
"prepare:polter": "mustache config/polter.json subgraph.polter.template.yaml > subgraph.yaml",
"prepare:geist": "mustache config/geist.json subgraph.polter.template.yaml > subgraph.yaml",
"prepare:baseSepolia": "mustache config/baseSepolia.json subgraph.sepolia.yaml > subgraph.yaml",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ aavegotchi/aavegotchi-core-matic",
"create-local": "graph create --node http://localhost:8020/ aavegotchi/aavegotchi-core-matic",
"remove-local": "graph remove --node http://localhost:8020/ aavegotchi/aavegotchi-core-matic",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 aavegotchi/aavegotchi-core-matic",
"generate-docs": "graphdoc -e https://api.thegraph.com/subgraphs/name/aavegotchi/aavegotchi-core-matic -o ./doc/schema --force",
"test:unit": "graph test",
"test:e2e": "jest",
"check-deployment": "node ./bin/checkDeployment"
},
"dependencies": {
"@2fd/graphdoc": "^2.4.0",
"@graphprotocol/graph-cli": "0.59.0",
"@graphprotocol/graph-ts": "0.31.0",
"@openzeppelin/subgraphs": "^0.1.8",
"mustache": "^4.2.0"
},
"devDependencies": {
"@amxx/graphprotocol-utils": "^1.1.0",
"apollo-fetch": "^0.7.0",
"dotenv": "^15.0.0",
"ethers": "^5.5.4",
"jest": "^27.4.7",
"json-diff": "^0.7.1",
"matchstick-as": "^0.6.0"
}
}