forked from Synthetixio/synthetix-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 3.66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "synthetix-subgraph",
"license": "MIT",
"version": "1.2.1",
"author": "Synthetix",
"main": "index.js",
"browser": "index.min.js",
"bin": {
"snxData": "bin.js"
},
"scripts": {
"lint": "eslint .",
"codegen": "node prepare-abis && graph codegen",
"codegen:snx": "npm run codegen -- subgraphs/synthetix.yaml",
"codegen:rates": "npm run codegen -- subgraphs/synthetix-rates.yaml",
"codegen:depot": "npm run codegen -- subgraphs/synthetix-depot.yaml",
"codegen:exchanges": "npm run codegen -- subgraphs/synthetix-exchanges.yaml",
"codegen:loans": "npm run codegen -- subgraphs/synthetix-loans.yaml",
"codegen:options": "npm run codegen -- subgraphs/synthetix-binary-options.yaml",
"codegen:orders": "npm run codegen -- subgraphs/synthetix-limit-orders.yaml",
"codegen:exchanger": "npm run codegen -- subgraphs/synthetix-exchanger.yaml",
"codegen:grantsdao": "npm run codegen -- subgraphs/synthetix-grantsdao.yaml",
"build": "graph build",
"build:snx": "graph build subgraphs/synthetix.yaml",
"build:rates": "graph build subgraphs/synthetix-rates.yaml",
"build:depot": "graph build subgraphs/synthetix-depot.yaml",
"build:exchanges": "graph build subgraphs/synthetix-exchanges.yaml",
"build:loans": "graph build subgraphs/synthetix-loans.yaml",
"build:options": "graph build subgraphs/synthetix-binary-options.yaml",
"build:orders": "graph build subgraphs/synthetix-limit-orders.yaml",
"build:exchanger": "graph build subgraphs/synthetix-exchanger.yaml",
"build:grantsdao": "graph build subgraphs/synthetix-grantsdao.yaml",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ --access-token $THEGRAPH_SNX_ACCESS_TOKEN",
"deploy:snx": "npm run deploy -- synthetixio-team/synthetix subgraphs/synthetix.yaml",
"deploy:rates": "npm run deploy -- synthetixio-team/synthetix-rates subgraphs/synthetix-rates.yaml",
"deploy:depot": "npm run deploy -- synthetixio-team/synthetix-depot subgraphs/synthetix-depot.yaml",
"deploy:exchanges": "npm run deploy -- synthetixio-team/synthetix-exchanges subgraphs/synthetix-exchanges.yaml",
"deploy:loans": "npm run deploy -- synthetixio-team/synthetix-loans subgraphs/synthetix-loans.yaml",
"deploy:options": "npm run deploy -- synthetixio-team/synthetix-binary-options subgraphs/synthetix-binary-options.yaml",
"deploy:orders": "npm run deploy -- synthetixio-team/synthetix-limit-orders subgraphs/synthetix-limit-orders.yaml",
"deploy:exchanger": "npm run deploy -- synthetixio-team/synthetix-exchanger subgraphs/synthetix-exchanger.yaml",
"deploy:grantsdao": "npm run deploy -- synthetixio-team/synthetix-grantsdao subgraphs/synthetix-grantsdao.yaml",
"create-local": "graph create --node http://localhost:8020/ synthetixio-team/synthetix",
"remove-local": "graph remove --node http://localhost:8020/ synthetixio-team/synthetix",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 synthetixio-team/synthetix"
},
"dependencies": {
"@graphprotocol/graph-cli": "git://github.com/graphprotocol/graph-cli.git#ebeeba0009f026bacf940f25ee7b875fe7676032",
"@graphprotocol/graph-ts": "0.18.1",
"chalk": "2.4.2",
"commander": "2.20.0",
"synthetix": "2.28.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"eslint": "6.8.0",
"eslint-config-prettier": "4.3.0",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"minify": "4.1.3",
"prettier": "1.17.1",
"typescript": "3.8.3"
}
}