-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 909 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
{
"name": "zigbee2mqtt-exporter",
"version": "0.2.7",
"description": "prometheus exporter for zigbee2mqtt data",
"main": "server.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts",
"service": "node dist/server.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "eslint src/*.ts",
"typecheck": "tsc --noEmit"
},
"author": "Nils Müller",
"license": "MIT",
"dependencies": {
"express": "4.21.2",
"morgan": "1.10.0",
"ws": "8.18.0"
},
"devDependencies": {
"@types/express": "5.0.0",
"@types/morgan": "1.9.9",
"@types/node": "22.13.4",
"@types/ws": "8.5.14",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"prettier": "3.5.1",
"typescript": "5.7.3"
}
}