-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 KB
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
{
"name": "src",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"monitor": "ts-node src/app.ts monitor --config-file",
"check-types": "tsc --noEmit",
"eslint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"eslint:fix": "eslint --ext .js,.ts --ignore-path .gitignore --fix .",
"lint": "yarn check-types && yarn eslint",
"lint:fix": "yarn check-types; yarn eslint:fix",
"test:unit": "jest monitor",
"test:coverage": "jest --collect-coverage",
"build": "tsc",
"create-executable:os": "pkg -t node18-macos-x64 -o monitor-node18-macos-x64 build/src/app.js",
"create-executable:linux": "pkg -t node18-linux-x64 -o monitor-node18-linux-x64 build/src/app.js"
},
"dependencies": {
"async-mutex": "^0.4.0",
"commander": "^11.1.0",
"ethers": "^6.9.1",
"joi": "^17.11.0",
"pkg": "^5.8.1",
"toml": "^3.0.0"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1"
},
"engines": {
"node": "18.x"
}
}