-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
89 lines (89 loc) · 2.8 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@keep3r-network/cli",
"version": "1.0.0",
"description": "Keep3r CLI",
"keywords": [
"keep3r",
"cli",
"job",
"ethereum"
],
"repository": {
"type": "git",
"url": "git+https://github.com/keep3r-network/cli.git"
},
"license": "MIT",
"author": "DeFi Wonderland",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"start": "ts-node src/core.ts",
"simulate": "ts-node src/simulate.ts",
"test": "tsc && jest --verbose",
"test:coverage": "yarn test --collectCoverage",
"clean": "rm -rf dist build package",
"docs": "typedoc --entryPoints src/main.ts",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts --cache --fix",
"prepare": "husky install",
"validator": "yarn typescript-json-validator --useNamedExport",
"validator:config": "yarn validator src/config/config.d.ts Config",
"validator:simulation-config": "yarn validator src/config/simulation-config.d.ts SimulationConfig",
"validator:secrets": "yarn validator src/config/secrets.d.ts Secrets",
"validator:io": "yarn validator src/utils/io.d.ts JobMetadata",
"validator:all": "yarn validator:config && yarn validator:simulation-config && yarn validator:secrets && yarn validator:io",
"postinstall": "yarn validator:all",
"node:mainnet": "geth --mainnet --syncmode 'light' --http",
"node:goerli": "geth --goerli --syncmode 'light' --http",
"release": "yarn build && standard-version"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "2.0.4",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.0.2",
"@types/jest-when": "2.7.3",
"@types/node": "15.0.1",
"@types/yargs": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": ">=6",
"jest": "27.0.2",
"jest-when": "3.4.1",
"lint-staged": ">=10",
"prettier": "2.4.1",
"ts-jest": "27.0.2",
"ts-node": "9.1.1",
"typedoc": "0.20.35",
"typescript": "4.2.3",
"standard-version": "9.3.0"
},
"lint-staged": {
"*.ts": "yarn lint"
},
"dependencies": {
"@keep3r-network/cli-utils": "1.0.0-beta.1",
"@keep3r-network/cli-sample-jobs": "1.0.0-beta.1",
"@flashbots/ethers-provider-bundle": "0.4.2",
"@types/dotenv": "8.2.0",
"@types/inquirer": "8.1.3",
"axios": "0.23.0",
"dotenv": "10.0.0",
"ethers": "5.5.1",
"fs-extra": "10.0.0",
"inquirer": "8.2.0",
"moment": "2.29.1",
"portfinder": "1.0.28",
"rxjs": "7.4.0",
"typescript-json-validator": "2.4.2",
"web3-utils": "^1.6.0",
"winston": "3.3.3",
"winston-daily-rotate-file": "4.5.5",
"yargs": "17.2.1"
}
}