-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 987 Bytes
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
{
"name": "stvaults-watcher",
"version": "1.1.1",
"description": "Monitor for Lido stVaults. Prometheus metrics and Discord alerts",
"type": "module",
"main": "src/index.js",
"packageManager": "pnpm@11.1.1",
"scripts": {
"start": "node src/index.js",
"test": "node --test tests/**/*.test.js",
"test:grafana": "tsx --test tests/grafana/build.test.ts tests/grafana/dashboard.test.ts tests/grafana/panels.test.ts",
"test:all": "pnpm test && pnpm run test:grafana",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"grafana:build": "tsx src/grafana/build.ts"
},
"engines": {
"node": ">=20",
"pnpm": ">=11"
},
"dependencies": {
"prom-client": "^15.1.3",
"viem": "^2.55.8"
},
"devDependencies": {
"@grafana/grafana-foundation-sdk": "~0.0.18",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^10.7.0",
"tsx": "^4.23.1"
}
}