-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
{
"name": "@tomfrench/subgraph-template",
"version": "1.0.0",
"description": "Template for subgraph development boilerplate",
"scripts": {
"auth": "graph auth https://api.thegraph.com/deploy/",
"lint": "eslint ./src",
"local:create": "graph create --node http://localhost:8020/ ORGANISATION/SUBGRAPH",
"local:remove": "graph remove --node http://localhost:8020/ ORGANISATION/SUBGRAPH",
"local:deploy": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 ORGANISATION/SUBGRAPH",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/",
"deploy:mainnet": "yarn deploy ORGANISATION/SUBGRAPH",
"codegen": "yarn generate-manifests && graph codegen --output-dir src/types/",
"generate-manifests": "ts-node ./scripts/generate-manifests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomAFrench/subgraph-template.git"
},
"contributors": [
{
"name": "Tom French",
"url": "https://github.com/tomafrench"
},
{
"name": "Dylan Golow",
"url": "https://github.com/dylangolow"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TomAFrench/subgraph-template/issues"
},
"homepage": "https://github.com/TomAFrench/subgraph-template#readme",
"dependencies": {
"@graphprotocol/graph-ts": "^0.24.1"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.25.1",
"@types/fs-extra": "^9.0.2",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.37",
"eslint": "^7.10.0",
"eslint-config-airbnb-base-typescript-prettier": "^4.1.0",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.6",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}