-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "mqtt-prometheus-gateway",
"version": "2.0.0",
"description": "A gateway listening on MQTT packets to obtain information from sensors and publish it as prometheus metrics",
"scripts": {
"dev": "ts-node gateway",
"start": "node .",
"test": "vitest --run",
"test:ci": "vitest --coverage",
"test:watch": "vitest",
"build": "tsc",
"docker:build": "docker build -t joschi64/mqtt-prometheus-gateway:latest .",
"docker:run": "docker run -it -v $(pwd)/config.yaml:/config.yaml -v $(pwd)/.env.local:/app/.env joschi64/mqtt-prometheus-gateway:latest",
"update": "npx -y npm-check-updates -du"
},
"keywords": [
"mqtt",
"mqtt-client",
"prometheus",
"gateway",
"nodejs",
"typescript"
],
"author": "Joachim Schirrmacher",
"license": "MIT",
"dependencies": {
"aedes": "^0.51.3",
"dotenv-flow": "^4.1.0",
"express": "^4.21.1",
"mqtt": "^5.10.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"useful-typescript-functions": "4.3.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@types/dotenv-flow": "3.3.3",
"@types/express": "5.0.0",
"@vitest/coverage-v8": "^2.1.5",
"vitest": "2.1.5"
}
}