-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.55 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
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
{
"name": "morpho-blue-subgraph",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build:mainnet": "graph build --network mainnet",
"build:base": "graph build --network base",
"deploy:studio:base": "graph deploy --studio morpho-blue-base --network base",
"deploy:studio:mainnet": "graph deploy --studio morpho-blue --network mainnet",
"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"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.55.0",
"@graphprotocol/graph-ts": "0.30.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"
]
}
}