forked from awesomestvi/navet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.83 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "navet",
"private": true,
"version": "0.1.0-beta.3",
"description": "A smart home dashboard PWA for Home Assistant.",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/awesomestvi/navet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/awesomestvi/navet.git"
},
"bugs": {
"url": "https://github.com/awesomestvi/navet/issues"
},
"type": "module",
"packageManager": "pnpm@10.33.2",
"scripts": {
"build": "vite build",
"dev": "vite",
"preview": "pnpm build && pnpm preview:config && vite preview --host 0.0.0.0 --port 4173",
"preview:config": "node scripts/write-preview-config.mjs",
"clean:root": "node scripts/clean-root-artifacts.mjs",
"clean:all": "node scripts/clean-root-artifacts.mjs --all",
"storybook": "STORYBOOK=1 HOME=$PWD/.cache/storybook/home XDG_CONFIG_HOME=$PWD/.cache/storybook STORYBOOK_DISABLE_TELEMETRY=1 SBCONFIG_PORT=6006 storybook dev --ci",
"storybook:build": "STORYBOOK=1 HOME=$PWD/.cache/storybook/home XDG_CONFIG_HOME=$PWD/.cache/storybook STORYBOOK_DISABLE_TELEMETRY=1 storybook build -o .cache/storybook-static",
"build-storybook": "pnpm storybook:build",
"lint": "biome lint ./src",
"format": "biome format --write ./src",
"check": "biome check ./src",
"check:stories": "node scripts/check-storybook-standards.mjs",
"check:ui-kit": "node scripts/check-ui-kit-boundaries.mjs",
"check:lockfile": "node scripts/check-pnpm-lock-sync.mjs",
"check:commitmsg": "node scripts/check-commit-message.mjs",
"check:fix": "biome check --apply ./src",
"report:ui-kit": "node scripts/check-ui-kit-usage.mjs",
"test": "vitest --config vitest.unit.config.ts --project unit",
"test:coverage": "vitest --config vitest.unit.config.ts --project unit --coverage",
"test:storybook": "vitest --project \"storybook:$PWD/.storybook\"",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-alert-dialog": "1.1.15",
"@radix-ui/react-avatar": "1.1.11",
"@radix-ui/react-checkbox": "1.3.3",
"@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-label": "2.1.8",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-slider": "1.3.6",
"clsx": "2.1.1",
"home-assistant-js-websocket": "^9.6.0",
"leaflet": "^1.9.4",
"lucide-react": "1.14.0",
"react-leaflet": "^5.0.0",
"sonner": "2.0.7",
"tailwind-merge": "3.6.0",
"workbox-window": "^7.4.1",
"yaml": "^2.9.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@storybook/addon-a11y": "^10.3.6",
"@storybook/addon-docs": "10.3.6",
"@storybook/addon-vitest": "^10.3.6",
"@storybook/react": "10.3.6",
"@storybook/react-vite": "^10.3.6",
"@tailwindcss/vite": "4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "6.0.1",
"@vitest/browser-playwright": "^4.1.6",
"@vitest/coverage-v8": "^4.1.6",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"storybook": "^10.3.6",
"tailwindcss": "4.3.0",
"typescript": "^6.0.3",
"vite": "8.0.12",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.6"
},
"peerDependencies": {
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"pnpm": {
"overrides": {
"vite": "8.0.12"
}
}
}