-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "subgraph-template",
"description": "This is just a Demo Subgraph",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:lingcoder/subgraph-template.git",
"author": "LingCoder",
"license": "MIT",
"workspaces": [
"subgraphs/**/*"
],
"scripts": {
"codegen": "turbo run codegen",
"build": "turbo run build",
"format:check": "prettier --check \"*/**/*.{js,ts}\"",
"format:write": "prettier --write \"*/**/*.{js,ts}\"",
"lint": "eslint \"*/**/*.{js,ts}\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@graphprotocol/graph-cli": "^0.60.0",
"@graphprotocol/graph-ts": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"mustache": "^4.2.0",
"prettier": "^3.0.3",
"turbo": "^1.10.16",
"typescript": "^5.2.2"
}
}