-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "ha-linky",
"private": true,
"version": "1.5.0",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "npx prettier --check --ignore-path .gitignore . && npx eslint --ext ts,js .",
"prepare": "husky install"
},
"prettier": "@bokub/prettier-config",
"dependencies": {
"chalk": "^5.3.0",
"csv-parse": "^5.5.3",
"dayjs": "^1.11.9",
"linky": "^2.0.2",
"node-cron": "^3.0.2",
"websocket": "^1.0.34"
},
"devDependencies": {
"@bokub/prettier-config": "^2.1.0",
"@types/node": "^20.4.5",
"@types/node-cron": "^3.0.8",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"home-assistant-js-websocket": "^8.2.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "^5.1.6",
"vitest": "^1.6.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,ts,vue}": "eslint --fix"
}
}