-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.39 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
46
47
48
49
50
51
{
"name": "e2m-hass-bridge",
"version": "1.6.0",
"author": "nana4rider",
"license": "ISC",
"main": "dist/index.js",
"type": "module",
"homepage": "https://github.com/nana4rider/e2m-hass-bridge",
"scripts": {
"dev": "tsx --env-file=.env src/index.ts",
"start": "node dist/index",
"build": "node build.js",
"lint": "tsc && eslint --max-warnings 0 && prettier . --check",
"lint:fix": "eslint --fix && prettier . --write",
"format:test-json": "prettier '__tests__/**/*.json' --write --ignore-path /dev/null",
"test": "jest",
"prepare": "husky"
},
"lint-staged": {
"*.ts": "npm run lint"
},
"dependencies": {
"envalid": "^8.0.0",
"fastify": "^5.2.1",
"mqtt": "^5.10.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@swc/core": "^1.10.7",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"dotenv": "^16.4.7",
"echonetlite2mqtt": "github:banban525/echonetlite2mqtt#v3.3.0",
"esbuild": "^0.24.2",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"glob": "^11.0.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}