-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 KB
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
42
43
44
{
"name": "subgraph",
"description": "LooksRare subgraphs (Graph Protocol)",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:looksrare/subgraph.git",
"author": "LooksRare",
"license": "MIT",
"workspaces": [
"subgraphs/**/*"
],
"scripts": {
"build:goerli": "lerna run build:goerli",
"build:mainnet": "lerna run build:mainnet",
"codegen": "lerna run codegen",
"format:check": "prettier --check '*/**/*.{js,ts,yaml,yml,json}'",
"format:write": "prettier --write '*/**/*.{js,ts,yaml,yml,json}'",
"lint": "eslint '**/**/*.{js,ts}'",
"prepare": "husky install",
"test": "lerna run test:lerna"
},
"dependencies": {
"@looksrare/sdk": "^0.12.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.0",
"@commitlint/config-conventional": "^17.6.0",
"@graphprotocol/graph-cli": "^0.53.0",
"@graphprotocol/graph-ts": "^0.31.0",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.9.0",
"husky": "^8.0.0",
"lerna": "^7.1.0",
"matchstick-as": "^0.5.0",
"prettier": "^3.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": "18.x"
}
}