-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.26 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.26 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
{
"name": "@ccu-addon-mui/source",
"version": "0.0.66",
"license": "MIT",
"scripts": {
"start:fe": "nx serve --host=0.0.0.0",
"start:fe:local": "nx serve --configuration=local --host=0.0.0.0",
"start:fe:ccu3": "nx serve --configuration=ccu3 --host=0.0.0.0",
"start:server": "cd go-server && go run main.go",
"build": "nx build",
"postbuild": "npm run remove:build && npm run copy:build && npm run tar:gz",
"test": "nx test",
"test:e2e": "playwright test",
"test:e2e:coverage": "npm run test:e2e:coverage:collect && npm run test:e2e:coverage:report",
"test:e2e:coverage:collect": "rm -rf .nyc_output coverage/playwright && mkdir -p .nyc_output && PW_COVERAGE=1 playwright test",
"test:e2e:coverage:report": "nyc report --temp-dir .nyc_output --reporter=text-summary --reporter=html --reporter=lcov --report-dir coverage/playwright",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install",
"test:go": "cd go-server && go test -v ./...",
"test:go:coverage": "cd go-server && make coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"remove:build": "rm -Rf addon_installer/dist addon_installer/go-server",
"version:patch": "npm version patch",
"version:current": "node -p -e \"require('./package.json').version\"",
"write:version": "echo $(npm run version:current --silent) > addon_installer/VERSION",
"build:go-server": "cd go-server && make build-ccu3",
"copy:build": "npm run build:go-server && mkdir -p addon_installer/dist && cp -r dist/ccu-addon-mui/* addon_installer/dist && mkdir -p addon_installer/go-server && cp go-server/ccu-addon-mui-server-arm addon_installer/go-server/ && npm run write:version",
"tar:gz": "chmod -R 777 addon_installer/ && tar -czvf mui-$(npm run version:current --silent).tar.gz -C addon_installer ."
},
"private": true,
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@fontsource/roboto": "^5.2.9",
"@swc/helpers": "0.5.18",
"@tanstack/react-router": "^1.144.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-use-websocket": "^4.13.0"
},
"devDependencies": {
"@emotion/babel-plugin": "11.13.5",
"@nx/eslint": "22.3.3",
"@nx/eslint-plugin": "22.3.3",
"@nx/js": "22.3.3",
"@nx/react": "22.3.3",
"@nx/vite": "22.3.3",
"@nx/vitest": "22.3.3",
"@nx/workspace": "22.3.3",
"@playwright/test": "^1.58.2",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.6.0",
"@swc/core": "1.5.7",
"@tanstack/router-vite-plugin": "^1.144.0",
"@types/node": "24.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "5.0.0",
"jsdom": "~22.1.0",
"nx": "22.3.3",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"typescript": "5.9.3",
"v8-to-istanbul": "^9.3.0",
"vite": "7.2.2",
"vite-plugin-pwa": "^1.1.0"
}
}