-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 2.55 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
{
"name": "horizon-testnet-liquidation-keepers",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "pm2 start ecosystem.config.js",
"start:mainnet": "pm2 start ecosystem.config.js --only liquidation-keeper-mainnet",
"start:testnet": "pm2 start ecosystem.config.js --only liquidation-keeper-testnet",
"dev": "name=liquidation-keeper-testnet ts-node-dev --respawn --transpile-only src/index.ts run",
"dev:mainnet": "name=liquidation-keeper-mainnet ts-node-dev --respawn --transpile-only src/index.ts run",
"build": "tsc && touch .env && cp .env build/",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"upgrade-synthetix": "npm i @rout-horizon/contracts-interface@latest @rout-horizon/wei@latest @rout-horizon/testnet-contracts@latest"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.231.0",
"@aws-sdk/client-cloudwatch-logs": "3.72.0",
"@ethersproject/abstract-provider": "5.5.1",
"@ethersproject/experimental": "5.6.0",
"@pythnetwork/pyth-evm-js": "^1.1.0",
"@rout-horizon/contracts-interface": "npm:@rout-horizon/horizon-testnet-contracts-interface@^1.14.0",
"@rout-horizon/testnet-contracts": "npm:@rout-horizon/horizon-testnet@^2.21.0",
"@rout-horizon/wei": "^2.74.5",
"cron": "^2.2.0",
"dotenv": "^16.0.3",
"ethereum-multicall": "^2.15.0",
"ethers": "5.7.2",
"ethers-multicall2": "^0.1.1",
"graph-results-pager": "^1.0.3",
"lodash": "4.17.21",
"log-process-errors": "6.3.0",
"pm2": "5.1.2",
"winston": "3.7.2",
"winston-cloudwatch": "4.0.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.4",
"@nomiclabs/hardhat-truffle5": "2.0.3",
"@types/chai": "4.3.0",
"@types/cron": "^2.0.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "27.0.3",
"@types/lodash": "4.14.177",
"@types/log-process-errors": "6.3.1",
"@types/mocha": "9.1.0",
"@types/node": "16.11.12",
"chai": "4.3.6",
"eslint": "7.6.0",
"eslint-config-prettier": "3.6.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-havven": "1.1.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-no-only-tests": "2.4.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.0.0",
"hardhat": "2.8.2",
"jest": "27.4.3",
"prettier": "1.19.1",
"ts-jest": "27.1.1",
"ts-node-dev": "1.1.8",
"typescript": "4.5.2"
}
}