This repository was archived by the owner on Apr 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.01 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 4.01 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "morpho-blue-subgraph",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build:mainnet": "graph build --network mainnet",
"build:base": "graph build --network base",
"build:scroll": "graph build --network scroll",
"build:optimism": "graph build --network optimism",
"build:arbitrum": "graph build --network arbitrum-one",
"build:polygon-pos": "graph build --network matic",
"build:fraxtal": "graph build --network fraxtal",
"build:ink": "graph build --network ink",
"build:unichain": "graph build --network unichain",
"build:sonic": "graph build --network sonic",
"build:mode": "graph build --network mode-mainnet",
"build:corn": "graph build --network corn",
"build:hemi": "graph build --network hemi",
"deploy:studio:base": "graph deploy morpho-blue-base --network base",
"deploy:studio:optimism": "graph deploy morpho-blue-optimism --network optimism",
"deploy:studio:arbitrum": "graph deploy morpho-blue-arbitrum --network arbitrum-one",
"deploy:studio:polygon-pos": "graph deploy morpho-blue-polygon-pos --network matic",
"deploy:studio:fraxtal": "graph deploy morpho-blue-fraxtal --network fraxtal",
"deploy:studio:ink": "graph deploy morpho-blue-ink --network ink",
"deploy:studio:unichain": "graph deploy morpho-blue-unichain --network unichain",
"deploy:studio:sonic": "graph deploy morpho-blue-sonic --network sonic",
"deploy:studio:mode": "graph deploy morpho-blue-mode --network mode-mainnet",
"deploy:studio:corn": "graph deploy morpho-blue-corn --network corn",
"deploy:studio:hemi": "graph deploy morpho-blue-hemi --network hemi",
"deploy:studio:mainnet": "graph deploy morpho-blue --network mainnet",
"deploy:studio:scroll": "graph deploy morpho-blue-scroll --network scroll",
"create-local": "graph create --node http://localhost:8020/ morpho-org/morpho-blue",
"remove-local": "graph remove --node http://localhost:8020/ morpho-org/morpho-blue",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 morpho-org/morpho-blue",
"test": "graph test",
"lint": "eslint --ext .ts .",
"lint:fix": "yarn lint --fix",
"format": "prettier .",
"format:fix": "yarn format -w",
"postinstall": "yarn codegen"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.95.0",
"@graphprotocol/graph-ts": "^0.37.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"matchstick-as": "0.5.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/github"
]
}
}