-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "subgraph",
"description": "Loreum Subgraph Indexers",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:loreum-org/subgraph.git",
"author": "Loreum",
"license": "MIT",
"workspaces": [
"subgraphs/**/*"
],
"scripts": {
"mac": "docker-compose --file mac.yaml up --build",
"intel": "docker-compose --file intel.yaml up --build",
"codegen": "lerna run codegen",
"build": "lerna run build",
"build:holesky": "lerna run build:holesky",
"deploy:holesky": "lerna run deploy:holesky",
"build:goerli": "lerna run build:goerli",
"build:mainnet": "lerna run build:mainnet",
"format:check": "prettier --check '*/**/*.{js,ts,yaml,yml,json}'",
"format:write": "prettier --write '*/**/*.{js,ts,yaml,yml,json}'",
"lint": "eslint '*/**/*.{js,ts}'",
"test": "lerna run test:lerna",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@graphprotocol/graph-cli": "^0.63.1",
"@graphprotocol/graph-ts": "^0.28.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.0",
"lerna": "^5.5.4",
"matchstick-as": "^0.5.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}