-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.85 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
50
{
"name": "lrt-subgraph",
"private": true,
"scripts": {
"postinstall": "yarn run --silent prepare:arbitrum && yarn run --silent codegen",
"codegen": "rm -Rf generated && graph codegen",
"build": "graph build",
"format": "prettier . --write",
"test": "yarn run --silent test:lint && yarn run --silent test:unit && yarn run --silent test:config",
"test:unit": "graph test",
"test:lint": "prettier . --check",
"test:config": "ts-node --project tsconfig.scripts.json ./bin/check-config.ts",
"infra:start": "docker compose up -d",
"infra:stop": "docker compose down",
"create-local": "graph create beefyfinance/lrt --node http://127.0.0.1:8020",
"deploy-local": "graph deploy beefyfinance/lrt --node http://127.0.0.1:8020 --ipfs http://localhost:5001",
"remove-local": "graph remove beefyfinance/lrt --node http://127.0.0.1:8020",
"prepare:arbitrum": "./bin/prepare.sh arbitrum",
"prepare:base": "./bin/prepare.sh base",
"prepare:bsc": "./bin/prepare.sh bsc",
"prepare:ethereum": "./bin/prepare.sh ethereum",
"prepare:linea": "./bin/prepare.sh linea",
"prepare:manta": "./bin/prepare.sh manta",
"prepare:mode": "./bin/prepare.sh mode",
"prepare:optimism": "./bin/prepare.sh optimism",
"prepare:kava": "./bin/prepare.sh kava",
"prepare:sei": "./bin/prepare.sh sei"
},
"main": "./bin/index.js",
"bin": {
"subgraph-cli": "./bin/index.js"
},
"license": "MIT",
"devDependencies": {
"@graphprotocol/graph-cli": "^0.69.2",
"@graphprotocol/graph-ts": "^0.34.0",
"assemblyscript-prettier": "^3.0.1",
"husky": ">=7",
"lint-staged": ">=10",
"matchstick-as": "^0.6.0",
"mustache": "^4.2.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {},
"lint-staged": {
"*.--check": "prettier --write"
},
"packageManager": "[email protected]"
}