forked from LooksRare/subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.25 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
{
"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:rinkeby": "lerna run codegen:rinkeby",
"codegen:mainnet": "lerna run codegen:mainnet",
"build:rinkeby": "lerna run build:rinkeby",
"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.5.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@graphprotocol/graph-cli": "^0.29.2",
"@graphprotocol/graph-ts": "^0.26.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"matchstick-as": "^0.4.3",
"prettier": "^2.6.0",
"typescript": "^4.6.4"
}
}