-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 877 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
30
31
32
33
{
"name": "subgrpah-docker",
"version": "1.0.0",
"author": "ruggedev <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"subgraphs/*",
"./*"
],
"dependencies": {
"mustache": "^4.2.0"
},
"devDependencies": {
"@graphprotocol/graph-ts": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-rulesdir": "^0.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
},
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"test": "graph test",
"prepare:yaml": "yarn run --silent mustache mustache/config.json mustache/subgraph.template.yaml > subgraph.yaml",
"abi:eth": "scripts/get_abi.sh",
"deploy": "scripts/deploy.sh"
}
}