-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.06 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
{
"name": "@hai-on-op/scripts",
"version": "0.0.0",
"description": "HAI's keeper scripts",
"keywords": [
"job",
"ethereum"
],
"license": "GPL-3.0",
"author": "Wonderland",
"contributors": [
"wei3erhase (https://github.com/wei3erhase)",
"dristpunk (https://github.com/dristpunk)"
],
"private": true,
"scripts": {
"start:oracles": "ts-node src/oracles.ts",
"start:pid": "ts-node src/pid-controller.ts",
"start:pop-debt": "ts-node src/pop-debt.ts",
"start:auction-debt": "ts-node src/auction-debt.ts",
"start:auction-surplus": "ts-node src/auction-surplus.ts",
"start:transfer-surplus": "ts-node src/transfer-surplus.ts",
"start:liquidation": "ts-node src/liquidation.ts",
"compile-contracts": "cd solidity && yarn && yarn hardhat compile && cd ..",
"build": "yarn run compile-contracts && tsc",
"prod:oracles": "node dist/oracles.js",
"prod:pid": "node dist/pid-controller.js",
"prod:pop-debt": "node dist/pop-debt.js",
"prod:auction-debt": "node dist/auction-debt.js",
"prod:auction-surplus": "node dist/auction-surplus.js",
"prod:transfer-surplus": "node dist/transfer-surplus.js",
"prod:liquidation": "node dist/liquidation.js",
"lint:check": "yarn lint",
"lint:fix": "yarn lint --fix",
"lint": "eslint ./src"
},
"lint-staged": {
"*.ts": "yarn lint"
},
"dependencies": {
"@hai-on-op/sdk": "1.2.13",
"@types/node": "^20.4.2",
"dotenv": "16.0.3",
"ethers": "5.4.7",
"lodash.isequal": "4.5.0"
},
"devDependencies": {
"@types/lodash.isequal": "4.5.6",
"husky": ">=6",
"lint-staged": ">=10",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"xo": "0.52.3"
},
"xo": {
"prettier": true,
"rules": {
"unicorn/prefer-module": 0,
"import/extensions": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "variable",
"format": [
"camelCase",
"UPPER_CASE"
]
}
]
}
}
}