-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 1.06 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
{
"name": "@prophouse/subgraph",
"version": "0.1.0",
"license": "GPL-3.0",
"scripts": {
"local-node": "docker-compose up",
"codegen": "graph codegen",
"prebuild": "graph codegen",
"build": "graph build",
"build:local": "graph build --network local",
"create:local": "graph create --node http://localhost:8020/ prop-house",
"remove:local": "graph remove --node http://localhost:8020/ prop-house",
"deploy:local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 prop-house",
"build:goerli": "graph build --network goerli",
"deploy:goerli": "graph deploy --network goerli --product hosted-service prop-house/prop-house-goerli-v2",
"build:mainnet": "graph build --network mainnet",
"deploy:mainnet": "graph deploy --network mainnet --product hosted-service prop-house/prop-house",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.67.2",
"@graphprotocol/graph-ts": "0.29.3",
"as-poseidon": "0.1.2"
},
"devDependencies": {
"matchstick-as": "0.5.0"
}
}