Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sf-v committed Dec 10, 2024
1 parent 737cd32 commit 1993f44
Show file tree
Hide file tree
Showing 12 changed files with 139 additions and 229 deletions.
8 changes: 2 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,12 @@
"@types/jsonwebtoken": "^9.0.7",
"@types/micromatch": "^4.0.9",
"@types/mime-types": "^2.1.4",
"@types/mkdirp": "^0.5.2",
"@types/ncp": "^2.0.8",
"@types/node": "^22.10.1",
"@types/tar": "^6.1.13",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"babel-jest": "^29.7.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "8.57.0",
Expand All @@ -49,9 +48,6 @@
"type": "git",
"url": "https://github.com/salesforce/best.git"
},
"resolutions": {
"webpack": "^5.96.1"
},
"scripts": {
"build:docs": "yarn workspace @best/docs build",
"build:frontends": "lerna exec --scope @best/agent-frontend --scope @best/frontend -- yarn build",
Expand Down
6 changes: 3 additions & 3 deletions packages/@best/agent-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"@best/shared": "13.0.0",
"express": "^4.21.1",
"lwc": "^8.12.0",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5"
"socket.io": "4.8.1",
"socket.io-client": "4.8.1"
},
"devDependencies": {
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@lwc/compiler": "^8.12.0",
"@lwc/engine": "^1.17.6",
"@lwc/engine-dom": "^8.12.0",
"@lwc/module-resolver": "^8.12.0",
"@lwc/rollup-plugin": "8.12.0",
"@lwc/synthetic-shadow": "^8.12.0",
"@lwc/wire-service": "8.12.0",
"@babel/helper-create-class-features-plugin": "^7.25.9",
"copy-webpack-plugin": "^12.0.2",
"html-webpack-plugin": "^5.0.0",
"lwc-webpack-plugin": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@best/agent-hub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"@best/runner-remote": "13.0.0",
"@best/utils": "13.0.0",
"express": "^4.21.1",
"socket.io": "4.7.5",
"socket.io": "4.8.1",
"socket.io-file": "2.0.31",
"yargs": "^17.7.2"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/@best/agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"@best/utils": "13.0.0",
"express": "^4.21.1",
"mime": "3.0.0",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"socket.io": "4.8.1",
"socket.io-client": "4.8.1",
"tar": "^7.4.3"
},
"description": "Best Agent",
Expand Down
8 changes: 4 additions & 4 deletions packages/@best/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@
"jsonwebtoken": "9.0.2",
"plotly.js-basic-dist-min": "2.35.2",
"query-string": "^7.1.1",
"redux": "4.2.1",
"redux-thunk": "2.4.2",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"rollup": "^4.28.0"
},
"devDependencies": {
"@lwc/compiler": "^8.12.0",
"@lwc/engine": "^1.17.6",
"@lwc/engine-dom": "^8.12.0",
"@lwc/eslint-plugin-lwc": "1.9.0",
"@lwc/jest-preset": "^16.1.0",
"@lwc/module-resolver": "^8.12.0",
"@lwc/rollup-plugin": "8.12.0",
"@lwc/synthetic-shadow": "^8.12.0",
"@lwc/wire-service": "8.12.0",
"@lwc/eslint-plugin-lwc": "1.9.0",
"@lwc/jest-preset": "^16.1.0",
"@salesforce/eslint-config-lwc": "3.6.0",
"@salesforce/eslint-plugin-lightning": "1.0.0",
"@types/compression": "^1.7.5",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import configureMockStore from 'redux-mock-store';
import thunk from 'redux-thunk';
import { thunk } from 'redux-thunk';
import fetchMock from 'fetch-mock';

import * as types from 'store/shared';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import configureMockStore from 'redux-mock-store';
import thunk from 'redux-thunk';
import { thunk } from 'redux-thunk';
import fetchMock from 'fetch-mock';

import * as types from 'store/shared';
Expand Down
2 changes: 1 addition & 1 deletion packages/@best/frontend/src/modules/store/store/store.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createStore, applyMiddleware, combineReducers } from 'redux';
import thunk from 'redux-thunk';
import { thunk } from 'redux-thunk';

import * as reducers from './reducers';
import * as urlstorage from './urlstorage';
Expand Down
6 changes: 3 additions & 3 deletions packages/@best/runner-remote/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"@best/console-stream": "13.0.0",
"@best/runner-abstract": "13.0.0",
"@best/shared": "13.0.0",
"debug": "4.3.7",
"socket.io-client": "4.7.5",
"tar": "7.4.3"
"debug": "^4.4.0",
"socket.io-client": "^4.8.1",
"tar": "^7.4.3"
},
"description": "Best Runner (Headless)",
"files": [
Expand Down
4 changes: 2 additions & 2 deletions packages/@best/store/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"dependencies": {
"json2md": "~1.5.11",
"mkdirp": "3.0.1",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0",
"rimraf": "6.0.1"
"rimraf": "^6.0.1"
},
"devDependencies": {
"@types/json2md": "1.5.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/@best/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"dependencies": {
"chalk": "~2.4.2",
"https-proxy-agent": "^5.0.1",
"is-ci": "^3.0.1",
"is-ci": "^4.1.0",
"picocolors": "^1.1.1",
"systeminformation": "^5.23.6",
"winston": "^3.17.0"
Expand Down
Loading

0 comments on commit 1993f44

Please sign in to comment.