-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.93 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
31
32
33
34
35
36
37
38
39
40
{
"name": "sidechain-fees",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:avalanche": "mustache config/avalanche.json subgraph.template.yaml > subgraph.yaml",
"prepare:fantom": "mustache config/fantom.json subgraph.template.yaml > subgraph.yaml",
"prepare:arbitrum": "mustache config/arbitrum.json subgraph.template.yaml > subgraph.yaml",
"prepare:matic": "mustache config/matic.json subgraph.template.yaml > subgraph.yaml",
"prepare:xdai": "mustache config/xdai.json subgraph.template.yaml > subgraph.yaml",
"prepare:optimism": "mustache config/optimism.json subgraph.template.yaml > subgraph.yaml",
"deploy:avalanche": "graph deploy --node https://api.thegraph.com/deploy/ convex-community/sidechain-fees-avalanche",
"deploy:fantom": "graph deploy --node https://api.thegraph.com/deploy/ convex-community/sidechain-fees-fantom",
"deploy:arbitrum": "graph deploy --node https://api.thegraph.com/deploy/ convex-community/sidechain-fees-arbitrum",
"deploy:matic": "graph deploy --node https://api.thegraph.com/deploy/ convex-community/sidechain-fees-matic",
"deploy:xdai": "graph deploy --node https://api.thegraph.com/deploy/ convex-community/sidechain-fees-xdai",
"deploy:optimism": "graph deploy --node https://api.thegraph.com/deploy/ convex-community/sidechain-fees-optimism"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.30.3",
"@graphprotocol/graph-ts": "0.27.0",
"@protofire/subgraph-toolkit": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.0.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.0.0",
"typescript": "^4.0.0"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
},
"dependencies": {
"mustache": "^4.2.0"
}
}