forked from unlock-protocol/unlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 829 Bytes
/
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
{
"name": "@unlock-protocol/subgraph",
"version": "0.0.1",
"private": true,
"license": "UNLICENSED",
"scripts": {
"generate-subgraph-yaml": "node ./bin/subgraph_generator.js",
"codegen": "graph codegen",
"build": "node ./bin/build",
"deploy": "node ./bin/deploy",
"lint": "eslint --resolve-plugins-relative-to ../packages/eslint-config --ext .ts,.js src/ bin/"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.26.0",
"@graphprotocol/graph-ts": "0.24.1",
"@unlock-protocol/eslint-config": "workspace:./packages/eslint-config",
"@unlock-protocol/networks": "workspace:^",
"eslint": "8.8.0",
"fs-extra": "10.0.0",
"handlebars": "4.7.7",
"lint-staged": "12.3.3",
"yargs": "17.3.1"
},
"lint-staged": {
".{js,ts,tsx}": [
"eslint --fix"
]
}
}