-
Notifications
You must be signed in to change notification settings - Fork 581
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "pancake-subgraph",
"description": "PancakeSwap Subgraph",
"version": "2.0.0",
"private": true,
"repository": "[email protected]:pancakeswap/pancake-subgraph.git",
"author": "PancakeSwap",
"license": "GPL-3.0-or-later",
"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"
},
"resolutions": {
"gluegun": "github:edgeandnode/gluegun#b34b9003d7bf556836da41b57ef36eb21570620a",
"assemblyscript": "github:AssemblyScript/assemblyscript#3ed76a97f05335504166fce1653da75f4face28f"
},
"devDependencies": {
"mustache": "^4.2.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@graphprotocol/graph-cli": "^0.21.0",
"@graphprotocol/graph-ts": "^0.20.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.0",
"prettier": "^2.4.0",
"turbo": "^1.7.4",
"typescript": "^4.3.5"
}
}