-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (25 loc) · 1.26 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": "nft-share-platform-ropsten",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build-dev": "graph build --network goerli",
"build-test": "graph build --network mumbai",
"build-prod": "graph build --network matic",
"deploy-dev": "graph deploy --network goerli --node https://api.thegraph.com/deploy/ atarca/nft-share-platform-goerli",
"deploy-test": "graph deploy --network mumbai --node https://api.thegraph.com/deploy/ atarca/nft-share-platform-mumbai",
"deploy-prod": "graph deploy --network matic --node https://api.thegraph.com/deploy/ atarca/talko",
"create-local": "graph create --node http://localhost:8020/ atarca/nft-share-platform-goerli",
"remove-local": "graph remove --node http://localhost:8020/ atarca/nft-share-platform-goerli",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 atarca/nft-share-platform-goerli",
"docker-build": "docker build -t matchstick .",
"test": "docker run -it --rm --mount type=bind,source=<absolute/path/to/project>,target=/matchstick matchstick"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.33.0",
"@graphprotocol/graph-ts": "0.27.0"
},
"devDependencies": {
"matchstick-as": "0.5.0"
}
}