-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "@keep3r-network/cli-utils",
"version": "1.0.0",
"description": "Keep3r CLI Utils",
"keywords": [
"keep3r",
"cli",
"utils",
"job",
"ethereum"
],
"repository": {
"type": "git",
"url": "git+https://github.com/keep3r-network/cli-utils.git"
},
"license": "MIT",
"author": "DeFi Wonderland",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"lint:check": "cross-env prettier --check './**'",
"lint:fix": "sort-package-json && cross-env prettier --write './**'",
"release": "yarn build && standard-version",
"pre-release": "yarn build && standard-version --prerelease rc"
},
"dependencies": {
"@ethersproject/abstract-provider": "5.5.1",
"bigint-buffer": "1.1.5",
"ethers": "5.5.1",
"ganache": "v7.0.0-beta.1",
"rxjs": "7.4.0",
"web3-utils": "1.6.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"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"
}
}