generated from defi-wonderland/keep3r-cli-job-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "@yfi/keep3r-cli-jobs",
"version": "1.2.0",
"description": "Yearn Keep3r CLI Jobs",
"keywords": [
"keep3r",
"cli",
"job",
"yearn",
"ethereum"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yearn/keep3r-cli-jobs.git"
},
"license": "MIT",
"author": "Yearn",
"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": {
"@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",
"cross-env": "7.0.3",
"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",
"husky": ">=6",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"lint-staged": ">=10",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0"
},
"lint-staged": {
"*.ts": "yarn lint"
}
}