forked from aavegotchi/aavegotchi-core-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.16 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
{
"name": "aavegotchi-subgraph",
"version": "0.1.0",
"private": true,
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"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-ts": "0.26.0"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.26.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.2.3"
}
}