-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.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
67
68
{
"name": "@phuture/keeper-scripts",
"version": "0.0.1",
"description": "Phuture's keeper script for The Keep3r Network",
"keywords": [
"keep3r",
"job",
"ethereum",
"phuture"
],
"license": "MIT",
"author": "Phuture Finance",
"contributors": [
"0xng (https://github.com/0xng)",
"gotzenx (https://github.com/gotzenx)",
"0xGorilla (https://github.com/0xGorilla)",
"jn-lp (https://github.com/jn-lp)"
],
"private": true,
"scripts": {
"postinstall": "eth-sdk",
"start:order": "ts-node src/order-job.ts",
"start:deposit-manager": "ts-node src/deposit-manager-job.ts",
"build": "eth-sdk && tsc",
"prod:order": "node dist/src/order-job.js",
"prod:deposit-manager": "node dist/src/deposit-manager-job.js",
"lint": "xo",
"lint:fix": "xo --fix"
},
"lint-staged": {
"*.ts": "yarn lint"
},
"dependencies": {
"@keep3r-network/keeper-scripting-utils": "1.1.1",
"dotenv": "16.0.3",
"ethers": "5.6.9",
"lodash.isequal": "4.5.0",
"undici": "5.10.0"
},
"devDependencies": {
"@dethcrypto/eth-sdk": "0.3.3",
"@dethcrypto/eth-sdk-client": "0.1.6",
"@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"
]
}
]
}
}
}