generated from BHONetwork/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.02 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
{
"name": "eth-net-intelligence-api",
"version": "1.0.0",
"description": "A monitor tool for crawling RPC node data and submit to eth-netstats",
"engines": {
"node": ">= 18.12 <19"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "~29.2",
"@types/lodash": "^4.14.191",
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "~5.44",
"@typescript-eslint/parser": "~5.44",
"eslint": "~8.28",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~27.1",
"husky": "^8.0.1",
"jest": "~29.3",
"lint-staged": "^13.0.3",
"prettier": "~2.8",
"rimraf": "~3.0",
"ts-jest": "~29.0",
"ts-node-dev": "^2.0.0",
"tsc-watch": "^6.0.0",
"tsconfig-paths": "^4.1.2",
"tsutils": "~3.21",
"typescript": "~4.9"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch",
"dev": "tsc-watch --onSuccess \"ts-node-dev --inspect -r tsconfig-paths/register src/dev.ts\"",
"dev:local": "ln -s -f .env.local .env && ts-node-dev --inspect -r tsconfig-paths/register src/dev.ts",
"prepare": "husky install"
},
"author": "Jakub Synowiec <jsynowiec@users.noreply.github.com>",
"license": "Apache-2.0",
"dependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@slack/webhook": "^6.1.0",
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"ethers": "5.7.2",
"lodash": "^4.17.21",
"primus": "^8.0.7",
"primus-emit": "^1.0.0",
"primus-spark-latency": "^0.1.1",
"tslib": "~2.4",
"util": "^0.12.5"
},
"volta": {
"node": "18.12.1"
},
"packageManager": "pnpm@7.27.1"
}