-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.22 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.22 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "terra-subgraph",
"version": "1.0.0",
"description": "Terra Money subgraph 📊",
"author": "Blockcoders <engineering@blockcoders.io>",
"readmeFilename": "README.md",
"license": "MIT",
"engines": {
"node": "^12.x || >=14.x || >=16.x"
},
"scripts": {
"codegen": "graph codegen --output-dir src/types/",
"build": "graph build",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"create-local": "graph create blockcoders/terra --node http://127.0.0.1:8020",
"deploy-local": "graph deploy blockcoders/terra --debug --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy": "graph deploy blockcoders/terra-ropsten --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/ --debug",
"deploy-staging": "graph deploy $THE_GRAPH_GITHUB_USER/$THE_GRAPH_SUBGRAPH_NAME /Terra --ipfs https://api.staging.thegraph.com/ipfs/ --node https://api.staging.thegraph.com/deploy/",
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare:ropsten": "mustache config/ropsten.json subgraph.template.yaml > subgraph.yaml",
"watch-local": "graph deploy graphprotocol/Terra --watch --debug --node http://127.0.0.1:8020/ --ipfs http://localhost:5001"
},
"precommit": [
"codegen",
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blockcoders/terra-subgraph.git"
},
"keywords": [
"terra",
"terra.js",
"terrajs",
"terra.money",
"blockchain",
"graph",
"thegraph",
"the-graph",
"subgraph"
],
"bugs": {
"url": "https://github.com/blockcoders/terra-subgraph/issues"
},
"homepage": "https://github.com/blockcoders/terra-subgraph#readme",
"devDependencies": {
"@graphprotocol/graph-cli": "^0.28.1",
"@graphprotocol/graph-ts": "^0.26.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"pre-commit": "^1.2.2",
"prettier": "^2.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"mustache": "^4.2.0"
},
"optionalDependencies": {
"fsevents": "^2.3.1"
}
}