-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.83 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.83 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "liebe",
"author": "Marian Rudzynski <marian@rudzyn.ski>",
"version": "0.1.0",
"description": "A modern, extensible, and customizable Home Assistant dashboard.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fx/liebe.git"
},
"homepage": "https://fx.github.io/liebe/",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build && tsc --noEmit",
"build:ha": "vite build --config vite.config.ha.ts",
"build:ha:prod": "vite build --config vite.config.ha.ts --mode production",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit && eslint . --ext .ts,.tsx && prettier --check .",
"lint:fix": "eslint . --ext .ts,.tsx --fix && prettier --write .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:ui": "vitest --ui",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/themes": "^3.2.1",
"@tabler/icons-react": "^3.34.0",
"@tanstack/react-router": "^1.139.14",
"@tanstack/react-router-devtools": "^1.139.14",
"@tanstack/react-start": "^1.139.14",
"@tanstack/react-store": "^0.8.0",
"@tanstack/react-virtual": "^3.13.12",
"@types/js-yaml": "^4.0.9",
"home-assistant-js-websocket": "^9.5.0",
"js-yaml": "^4.1.0",
"lucide-react": "^0.525.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-grid-layout": "^1.5.2",
"react-markdown": "^10.1.0",
"sharp": "^0.34.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"@playwright/test": "^1.53.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.5.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-grid-layout": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"typescript": "^5.7.2",
"vite": "^7.2.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}