forked from defi-wonderland/phuture-keeper-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.99 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
75
76
77
78
{
"name": "@connext/keeper-scripts",
"version": "0.0.1",
"description": "Connext's keeper script for The Keep3r Network",
"keywords": [
"keep3r",
"job",
"ethereum",
"phuture",
"connext"
],
"license": "MIT",
"author": "Connext",
"contributors": [],
"private": true,
"scripts": {
"postinstall": "eth-sdk",
"start:propagate": "ts-node src/init-propagate.ts",
"build": "eth-sdk && tsc",
"prod:propagate": "node dist/src/init-propagate.js",
"lint": "xo",
"lint:fix": "xo --fix"
},
"lint-staged": {
"*.ts": "yarn lint"
},
"dependencies": {
"@arbitrum/sdk": "3.1.3",
"@connext/nxtp-adapters-subgraph": "2.0.0",
"@connext/nxtp-utils": "2.0.4",
"@consensys/linea-sdk": "0.1.6",
"@eth-optimism/sdk": "2.1.0",
"@flashbots/ethers-provider-bundle": "0.6.2",
"@keep3r-network/keeper-scripting-utils": "1.1.0",
"dotenv": "16.1.4",
"ethers": "5.6.9",
"interval-promise": "1.4.0",
"lodash.isequal": "4.5.0",
"undici": "5.22.1",
"zksync-web3": "0.14.3"
},
"devDependencies": {
"@dethcrypto/eth-sdk": "0.3.4",
"@dethcrypto/eth-sdk-client": "0.1.6",
"@types/lodash.isequal": "4.5.6",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"ts-node": "10.9.1",
"typechain": "8.2.0",
"typescript": "5.1.3",
"xo": "0.54.2"
},
"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"
]
}
],
"@typescript-eslint/no-unsafe-call": "off",
"new-cap": "off",
"no-await-in-loop": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"import/no-extraneous-dependencies": "warn",
"unicorn/prefer-top-level-await": "warn"
}
},
"packageManager": "yarn@3.5.0"
}