generated from defi-wonderland/keep3r-cli-job-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 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
{
"name": "@nikolasandreou/keep3r-cli-keep3rliquiditymanagerjob",
"version": "1.0.4",
"description": "Keep3r CLI - Keep3r Liquidity Manager Job",
"keywords": [
"keep3r",
"cli",
"job",
"liquidity",
"manager0",
"job",
"ethereum"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Codeh4ck/Keep3r-cli-Keep3rLiquidityManagerJob.git"
},
"license": "MIT",
"author": "Nikolas Andreou",
"contributors": [
"0xGorilla (https://github.com/0xGorilla)",
"0xng (https://github.com/0xng)",
"wei3erHase (https://github.com/wei3erHase)"
],
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && yarn eth-sdk && tsc -p tsconfig.build.json && cp -r ./src/eth-sdk-build ./dist/src",
"compile": "hardhat compile",
"lint": "eslint . --ext .ts --cache --fix",
"prepare": "husky install",
"release": "yarn build && standard-version",
"pre-release": "yarn build && standard-version --prerelease rc"
},
"dependencies": {
"@ethersproject/bignumber": "^5",
"@ethersproject/providers": "^5.0.0",
"@keep3r-network/cli-utils": "1.0.0",
"ethers": "5.5.1"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@dethcrypto/eth-sdk": "^0.2.4",
"@dethcrypto/eth-sdk-client": "^0.1.6",
"@ethersproject/abi": "^5",
"@ethersproject/abstract-provider": "^5",
"@ethersproject/bytes": "^5.0.0",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"hardhat": "^2.8.3",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.3.1",
"prettier-plugin-organize-imports": "2.3.3",
"sort-package-json": "1.50.0",
"standard-version": "9.3.0",
"ts-node": "10.0.0",
"typescript": "4.3.2"
},
"lint-staged": {
"*.ts": "yarn lint"
}
}