forked from itsjerryokolo/CryptoPunks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 1.04 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
{
"name": "cryptopunks",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ itsjerryokolo/cryptopunks",
"deploy:schmidsi": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ schmidsi/crypto-punks-dev",
"deploy-studio": "graph deploy --studio cryptopunks",
"create-local": "graph create --node http://localhost:8020/ itsjerryokolo/cryptopunks",
"remove-local": "graph remove --node http://localhost:8020/ itsjerryokolo/cryptopunks",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 itsjerryokolo/cryptopunks",
"test": "graph build && graph test",
"test:force": "rm -rf ./tests/.bin ./build && yarn test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.33.1",
"@graphprotocol/graph-ts": "0.27.0",
"keytar": "7.4.0"
},
"devDependencies": {
"matchstick-as": "0.5.0"
}
}