This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 2.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
41
42
43
44
45
46
47
48
49
{
"name": "drips-subgraph-mainnet-v2",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy:ethereum": "yarn prepare:ethereum && graph deploy --product hosted-service drips-network-dev/drips-on-ethereum",
"deploy:ethereum-lts": "yarn prepare:ethereum-lts && graph deploy --product hosted-service drips-network-dev/drips-v2-on-ethereum",
"deploy:ethereum-pre-prod": "yarn prepare:ethereum-pre-prod && graph deploy --product hosted-service drips-network-dev/drips-v2-on-ethereum-pre-prod",
"deploy:sepolia": "yarn prepare:sepolia && graph deploy --studio drips-v2-on-sepolia",
"deploy:goerli": "yarn prepare:goerli && graph deploy --studio drips-v2-on-goerli",
"deploy:polygon-amoy": "npm run prepare:polygon-amoy && graph deploy --studio drips-on-amoy",
"deploy:optimism-sepolia": "npm run prepare:optimism-sepolia && graph deploy --studio drips-on-optimism-sepolia",
"deploy:base-sepolia": "npm run prepare:base-sepolia && graph deploy --studio drips-on-base-sepolia",
"deploy:sepolia-staging": "yarn prepare:sepolia && graph deploy --product hosted-service jtourkos/drips-v2-on-sepolia-staging",
"create-local": "graph create drips-subgraph-local --node http://127.0.0.1:8020",
"remove-local": "graph remove drips-subgraph-local --node http://127.0.0.1:8020",
"deploy-local": "graph deploy drips-subgraph-local --node http://127.0.0.1:8020 --ipfs http://127.0.0.1:5001",
"prepare:ethereum": "mustache config/ethereum.json subgraph.template.yaml > subgraph.yaml",
"prepare:ethereum-lts": "mustache config/ethereum-lts.json subgraph.template.yaml > subgraph.yaml",
"prepare:ethereum-pre-prod": "mustache config/ethereum-pre-prod.json subgraph.template.yaml > subgraph.yaml",
"prepare:sepolia": "mustache config/sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:goerli": "mustache config/goerli.json subgraph.template.yaml > subgraph.yaml",
"prepare:polygon-amoy": "mustache config/polygon-amoy.json subgraph.template.yaml > subgraph.yaml",
"prepare:optimism-sepolia": "mustache config/optimism-sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:base-sepolia": "mustache config/base-sepolia.json subgraph.template.yaml > subgraph.yaml",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test": "graph test",
"test:coverage": "graph test -- -c"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.70.0",
"@graphprotocol/graph-ts": "^0.35.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"matchstick-as": "^0.5.0",
"mustache": "^4.2.0",
"prettier": "^2.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}