-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "operator-cli",
"version": "1.2.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint './**/*.ts'",
"lint-windows": "eslint ./**/*.ts",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"keywords": [],
"bin": {
"operator-cli": "./build/src/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/diskspace": "2.0.1",
"@types/js-yaml": "4.0.5",
"@types/node": "^18.16.1",
"@types/os-utils": "0.0.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-xss": "0.1.12",
"gts": "3.1.1",
"prettier": "2.8.8",
"typescript": "5.1.6",
"typescript-estree": "18.1.0"
},
"dependencies": {
"@shardus/crypto-utils": "4.1.3",
"ajv": "8.12.0",
"axios": "1.4.0",
"commander": "9.5.0",
"deepmerge": "4.3.1",
"diskspace": "2.0.0",
"dotenv": "16.3.1",
"ethereumjs-util": "7.1.5",
"ethers": "5.7.2",
"js-yaml": "4.1.0",
"os-utils": "0.0.14",
"pm2": "5.3.0",
"winston": "3.10.0"
},
"overrides": {
"semver": "7.5.3"
}
}