-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (67 loc) · 4.47 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
67
68
69
70
71
72
73
74
{
"private": true,
"scripts": {
"script": "ts-node scripts",
"precodegen:kovan": "rimraf src/generated && yarn script template --deployment kovan",
"precodegen:kovan-dev": "rimraf src/generated && yarn script template --deployment kovan",
"precodegen:kovan-local": "rimraf src/generated && yarn script template --deployment kovan",
"precodegen:mainnet": "rimraf src/generated && yarn script template --deployment mainnet",
"precodegen:mainnet-local": "rimraf src/generated && yarn script template --deployment mainnet",
"precodegen:dev": "rimraf src/generated && yarn script template --deployment mainnet",
"precodegen:staging": "rimraf src/generated && yarn script template --deployment mainnet",
"precodegen:bsc": "rimraf src/generated && yarn script template --deployment bsc",
"precodegen:bsc-local": "rimraf src/generated && yarn script template --deployment bsc",
"codegen:kovan": "graph codegen subgraph.yaml --output-dir src/generated",
"codegen:kovan-dev": "graph codegen subgraph.yaml --output-dir src/generated",
"codegen:kovan-local": "graph codegen subgraph.yaml --output-dir src/generated",
"codegen:mainnet": "graph codegen subgraph.yaml --output-dir src/generated",
"codegen:mainnet-local": "graph codegen subgraph.yaml --output-dir src/generated",
"codegen:dev": "graph codegen subgraph.yaml --output-dir src/generated",
"codegen:staging": "graph codegen subgraph.yaml --output-dir src/generated",
"codegen:bsc": "graph codegen subgraph.yaml --output-dir src/generated",
"codegen:bsc-local": "graph codegen subgraph.yaml --output-dir src/generated",
"postcodegen:kovan": "yarn script flatten",
"postcodegen:kovan-dev": "yarn script flatten",
"postcodegen:mainnet": "yarn script flatten",
"postcodegen:mainnet-local": "yarn script flatten",
"postcodegen:dev": "yarn script flatten",
"postcodegen:staging": "yarn script flatten",
"postcodegen:kovan-local": "yarn script flatten",
"postcodegen:bsc": "yarn script flatten",
"postcodegen:bsc-local": "yarn script flatten",
"predeploy:kovan-local": "graph create enzymefinance/enzyme-kovan --node http://127.0.0.1:8020 || true",
"predeploy:mainnet-local": "graph create enzymefinance/enzyme --node http://127.0.0.1:8020 || true",
"predeploy:bsc-local": "graph create trust0212/dexify-finance-subgraph --node http://127.0.0.1:8020 || true",
"deploy:kovan": "graph deploy trust0212/dexify-subgraph subgraph.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:kovan-dev": "graph deploy enzymefinance/enzyme-kovan-dev subgraph.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:kovan-local": "graph deploy enzymefinance/enzyme-kovan subgraph.yaml --ipfs http://localhost:5001 --node http://127.0.0.1:8020/",
"deploy:mainnet": "graph deploy trust0212/dexify-subgraph subgraph.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:mainnet-local": "graph deploy enzymefinance/enzyme subgraph.yaml --ipfs http://localhost:5001 --node http://127.0.0.1:8020/",
"deploy:dev": "graph deploy enzymefinance/enzyme-dev subgraph.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:staging": "graph deploy enzymefinance/enzyme-staging subgraph.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"format": "prettier --write {src,scripts}/{*,**/*}.{ts,json,yaml}",
"lint": "yarn prettier --list-different {src,scripts}/{*,**/*}.{ts,json,yaml}","install": "",
"deploy:bsc": "graph deploy trust0212/dexify-finance-subgraph subgraph.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:bsc-local": "graph deploy trust0212/dexify-finance-subgraph subgraph.yaml --ipfs http://localhost:5001 --node http://127.0.0.1:8020/"
},
"devDependencies": {
"@chainlink/contracts": "^0.1.9",
"@enzymefinance/protocol": "^2.0.9",
"@graphprotocol/graph-cli": "^0.21.0",
"@graphprotocol/graph-ts": "^0.20.1",
"@openzeppelin/contracts": "^4.1.0",
"@types/glob": "^7.1.4",
"@types/node": "^16.3.1",
"@types/yargs": "^17.0.2",
"assemblyscript": "^0.19.4",
"glob": "^7.1.7",
"graphql-request": "^3.4.0",
"handlebars": "^4.7.7",
"moment": "^2.29.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"yargs": "^17.0.1"
}
}