Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JustJoostNL committed Aug 21, 2024
1 parent 66cec59 commit 5b44a80
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 35 deletions.
Binary file modified bun.lockb
Binary file not shown.
45 changes: 22 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,26 @@
},
"dependencies": {
"@elgato-stream-deck/node": "^6.2.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "5.15.16",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "5.15.16",
"@mui/x-data-grid": "^7.3.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "5.16.7",
"@mui/lab": "^5.0.0-alpha.173",
"@mui/material": "5.16.7",
"@mui/x-data-grid": "^7.13.0",
"@q42philips/hue-color-converter": "^1.0.0",
"@sentry/electron": "^4.24.0",
"@sentry/electron": "^5.3.0",
"colortranslator": "^4.1.0",
"cross-fetch": "^4.0.0",
"deep-equal": "^2.2.3",
"discord-rpc": "github:JustJoostNL/DiscordRPC",
"electron-log": "^5.1.2",
"electron-store": "^8.2.0",
"electron-updater": "^6.1.8",
"electron-log": "^5.1.7",
"electron-updater": "^6.2.1",
"express": "^4.19.2",
"govee-lan-control": "^3.0.2",
"graphql": "^16.8.1",
"graphql": "^16.9.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mqtt": "^5.5.5",
"mqtt": "^5.10.0",
"node-fetch": "^3.3.2",
"node-hue-api": "^5.0.0-beta.16",
"node-tradfri-client": "^3.2.0",
Expand All @@ -51,19 +50,19 @@
"react-hotkeys-hook": "^4.5.0",
"react-json-tree": "^0.19.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.23.0",
"react-router-dom": "^6.26.1",
"react-window": "^1.8.10",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"semver": "^7.6.0",
"semver": "^7.6.3",
"serve-handler": "^6.1.5",
"socket.io": "^4.7.5",
"swr": "^2.2.5",
"wled-client": "^0.22.1"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^2.3.0",
"@electron/notarize": "^2.4.0",
"@types/deep-equal": "^1.0.4",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
Expand All @@ -73,21 +72,21 @@
"@types/serve-handler": "^6.1.4",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^30.0.2",
"@vitejs/plugin-react": "^4.3.1",
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.2.0",
"prettier": "^3.2.5",
"eslint-plugin-unused-imports": "^4.1.3",
"prettier": "^3.3.3",
"react-ga4": "^2.1.0",
"sass": "^1.76.0",
"sass": "^1.77.8",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite": "^5.4.2",
"vite-electron-plugin": "^0.8.3",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.5"
Expand Down
2 changes: 1 addition & 1 deletion src/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { app, BrowserWindow, shell } from "electron";
import log from "electron-log";
import portfinder from "portfinder";
import handler from "serve-handler";
import * as Sentry from "@sentry/electron";
import * as Sentry from "@sentry/electron/main";
import { autoUpdater } from "electron-updater";
import {
fetchAuthoritativeConfig,
Expand Down
1 change: 0 additions & 1 deletion src/main/lightController/controlAllLights.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ export async function controlAllLights({
brightness,
});
}

}

export async function turnOffAllLights() {
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/pages/HomeAssistantDeviceSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, useMemo, useState } from "react";
import { DataGrid, GridColDef, GridRowId } from "@mui/x-data-grid";
import { DataGrid, GridColDef, GridRowSelectionModel } from "@mui/x-data-grid";
import { Alert, Box } from "@mui/material";
import { useHotkeys } from "react-hotkeys-hook";
import { JSONTree } from "react-json-tree";
Expand Down Expand Up @@ -52,7 +52,7 @@ export function HomeAssistantDeviceSelector() {
}, [data?.devices]);

const handleSelectionModelChange = useCallback(
(newSelection: GridRowId[]) => {
(newSelection: GridRowSelectionModel) => {
if (!data) return;
const selectedDevices = rows.filter((row) =>
newSelection.includes(row.id),
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/pages/HomebridgeAccessoriesSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, useMemo, useState } from "react";
import { DataGrid, GridColDef, GridRowId } from "@mui/x-data-grid";
import { DataGrid, GridColDef, GridRowSelectionModel } from "@mui/x-data-grid";
import { Alert, Box } from "@mui/material";
import { useHotkeys } from "react-hotkeys-hook";
import { JSONTree } from "react-json-tree";
Expand Down Expand Up @@ -57,7 +57,7 @@ export function HomebridgeAccessoriesSelector() {
}, [data?.accessories]);

const handleSelectionModelChange = useCallback(
(newSelection: GridRowId[]) => {
(newSelection: GridRowSelectionModel) => {
if (!data) return;

const selectedAccessories = rows.filter((row) =>
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/pages/IkeaTradfriDeviceSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, useMemo, useState } from "react";
import { DataGrid, GridColDef, GridRowId } from "@mui/x-data-grid";
import { DataGrid, GridColDef, GridRowSelectionModel } from "@mui/x-data-grid";
import { Alert, Box } from "@mui/material";
import { useHotkeys } from "react-hotkeys-hook";
import { JSONTree } from "react-json-tree";
Expand Down Expand Up @@ -54,7 +54,7 @@ export function IkeaTradfriDeviceSelector() {
}, [data?.devices]);

const handleSelectionModelChange = useCallback(
(newSelection: GridRowId[]) => {
(newSelection: GridRowSelectionModel) => {
if (!data) return;
const selectedDevices = rows.filter((row) =>
newSelection.includes(row.id),
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/pages/PhilipsHueDeviceSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, useMemo, useState } from "react";
import { DataGrid, GridColDef, GridRowId } from "@mui/x-data-grid";
import { DataGrid, GridColDef, GridRowSelectionModel } from "@mui/x-data-grid";
import { Alert, Box } from "@mui/material";
import { useHotkeys } from "react-hotkeys-hook";
import { JSONTree } from "react-json-tree";
Expand Down Expand Up @@ -52,7 +52,7 @@ export function PhilipsHueDeviceSelector() {
}, [data?.devices]);

const handleSelectionModelChange = useCallback(
(newSelection: GridRowId[]) => {
(newSelection: GridRowSelectionModel) => {
if (!data) return;
const selectedDevices = rows.filter((row) =>
newSelection.includes(row.id),
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/pages/PhilipsHueGroupSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, useMemo, useState } from "react";
import { DataGrid, GridColDef, GridRowId } from "@mui/x-data-grid";
import { DataGrid, GridColDef, GridRowSelectionModel } from "@mui/x-data-grid";
import { Alert, Box } from "@mui/material";
import { useHotkeys } from "react-hotkeys-hook";
import { JSONTree } from "react-json-tree";
Expand Down Expand Up @@ -52,7 +52,7 @@ export function PhilipsHueGroupSelector() {
}, [data?.groups]);

const handleSelectionModelChange = useCallback(
(newSelection: GridRowId[]) => {
(newSelection: GridRowSelectionModel) => {
if (!data) return;
const selectedDevices = rows.filter((row) =>
newSelection.includes(row.id),
Expand Down

0 comments on commit 5b44a80

Please sign in to comment.