-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 931 Bytes
/
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
{
"name": "atmocube-metrics",
"version": "0.0.1",
"description": "A Node.js server that exposes metrics of the Atomocube.",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"start": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wokim/atmocube-metrics.git"
},
"keywords": [
"atmocube"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wokim/atmocube-metrics/issues"
},
"homepage": "https://github.com/wokim/atmocube-metrics#readme",
"dependencies": {
"@widesky/modbus-serial": "^9.0.1",
"express": "^4.18.2",
"lodash": "^4.17.21",
"prom-client": "^14.2.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.196",
"@types/node": "^20.4.9",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}