-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "alexa_share",
"version": "1.0.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"lint:fix": "biome check --write",
"format": "biome format --write",
"type-check": "tsc --noEmit",
"compose:up": "docker-compose up --build",
"compose:down": "docker-compose down",
"docker:build": "$(command -v podman || command -v docker) build -t alexa-share .",
"docker:run:dev": "$(command -v podman || command -v docker) run -p 8080:8080 --env-file .env -v $(pwd)/homeassistant/config:/config -v $(pwd)/homeassistant/addons:/data alexa-share",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@heroicons/react": "2.2.0",
"@material-tailwind/react": "2.1.10",
"@tanstack/react-query": "^5.90.16",
"@types/node": "24.1.0",
"@types/react": "18.2.19",
"@types/react-dom": "18.2.19",
"autoprefixer": "10.4.16",
"classnames": "^2.5.1",
"js-yaml": "^4.1.1",
"lodash": "4.17.21",
"next": "16.1.1",
"postcss": "8.4.32",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "^2.6.0",
"tailwindcss": "3.4.0",
"typescript": "5.3.3",
"ws": "^8.19.0"
},
"pnpm": {
"overrides": {
"@types/react": "18.2.19",
"@types/react-dom": "18.2.19"
}
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "4.17.23",
"@types/nock": "^11.1.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "4.0.17",
"@vitest/ui": "^4.0.17",
"axios": "1.13.2",
"jsdom": "^27.4.0",
"nock": "^14.0.10",
"vitest": "^4.0.17"
}
}