-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 818 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 818 Bytes
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
{
"name": "@dev-protocol/subgraphs",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run build",
"codegen": "yarn workspaces run codegen",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{sol,ts,js,json,md,yml}'",
"prepare": "husky install"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.37.1",
"@graphprotocol/graph-ts": "0.29.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo": "^0.43.0",
"eslint-config-xo-typescript": "^0.55.0",
"husky": "^8.0.1",
"mustache": "4.2.0",
"prettier": "^2.6.2",
"typescript": "^4.7.3"
}
}