forked from LooksRare/subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"name": "subgraph",
"description": "LooksRare subgraphs (Graph Protocol)",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:looksrare/subgraph.git",
"author": "LooksRare",
"license": "MIT",
"workspaces": [
"subgraphs/**/*"
],
"scripts": {
"codegen": "lerna run codegen",
"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"
},
"dependencies": {
"@looksrare/sdk": "^0.8.3"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@graphprotocol/graph-cli": "^0.34.0",
"@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"
}
}