-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 2.01 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": "wrappr",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy-goerli": "graph codegen && graph build --network goerli && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-goerli",
"deploy-mainnet": "graph codegen && graph build --network mainnet && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-mainnet",
"deploy-optimism": "graph codegen && graph build --network optimism && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-optimism",
"deploy-bsc": "graph codegen && graph build --network bsc && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-bsc",
"deploy-xdai": "graph codegen && graph build --network xdai && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-xdai",
"deploy-matic": "graph codegen && graph build --network matic && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-matic",
"deploy-fantom": "graph codegen && graph build --network fantom && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-fantom",
"deploy-arbitrum": "graph codegen && graph build --network arbitrum-one && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-arbitrum",
"deploy-avalanche": "graph codegen && graph build --network avalanche && graph deploy --node https://api.thegraph.com/deploy/ nerderlyne/wrappr-avalanche",
"create-local": "graph create --node http://localhost:8020/ nerderlyne/wrappr",
"remove-local": "graph remove --node http://localhost:8020/ nerderlyne/wrappr",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 nerderlyne/wrappr",
"test": "graph test",
"format": "prettier --write \"**/*.{jsx,md,js,mjs,ts,tsx}\""
},
"dependencies": {
"@graphprotocol/graph-cli": "0.33.0",
"@graphprotocol/graph-ts": "0.27.0"
},
"devDependencies": {
"matchstick-as": "0.5.0",
"prettier": "^2.7.1"
}
}