-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "eachwatt",
"version": "1.0.0",
"description": "Versatile energy monitoring solution for combining multiple types of power meters",
"author": "Sam Stenvall <[email protected]>",
"license": "GPL-3.0-or-later",
"scripts": {
"postinstall": "cd webif/ && npm install",
"build": "rm -rf dist/* && npx tsc",
"build-all": "npm run build && cd webif/ && npm run build",
"prettier": "prettier --write src/ tests/",
"prettier-check": "prettier --check src/ tests/",
"lint": "eslint 'src/**/*.ts'",
"test": "jest"
},
"engines": {
"node": ">= 22"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/ws": "^8.5.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.33.2",
"async-mutex": "^0.5.0",
"modbus-serial": "^8.0.16",
"mqtt": "^5.1.2",
"set-interval-async": "^3.0.3",
"slugify": "^1.6.6",
"winston": "^3.11.0",
"ws": "^8.17.1",
"yaml": "^2.3.2",
"yargs": "^17.7.2"
}
}