updated dependencies

This commit is contained in:
Dmitri 2026-03-18 11:53:34 +04:00
parent 5ec464e6ce
commit 70e3c28f6a
7 changed files with 2671 additions and 20669 deletions

18071
backend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,47 +11,47 @@
"watch": "node watcher.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1010.0",
"@google-cloud/storage": "^5.18.2",
"axios": "^1.6.7",
"bcrypt": "5.1.1",
"@aws-sdk/client-s3": "^3.1011.0",
"@google-cloud/storage": "^7.0.0",
"axios": "^1.13.0",
"bcrypt": "^6.0.0",
"chokidar": "^4.0.3",
"cors": "2.8.5",
"csv-parser": "^3.0.0",
"cors": "^2.8.6",
"csv-parser": "^3.2.0",
"express": "4.18.2",
"formidable": "1.2.2",
"helmet": "4.1.1",
"helmet": "^8.0.0",
"json2csv": "^5.0.7",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.23",
"moment": "2.30.1",
"multer": "^1.4.4",
"multer": "^2.0.0",
"mysql2": "2.2.5",
"nodemailer": "6.9.9",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.1",
"passport-microsoft": "^0.1.0",
"pg": "8.4.1",
"passport-microsoft": "^2.0.0",
"pg": "^8.20.0",
"pg-hstore": "2.3.4",
"sequelize": "6.35.2",
"sequelize": "^6.37.0",
"sequelize-json-schema": "^2.1.1",
"sqlite": "4.0.15",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"tedious": "^18.2.4"
"tedious": "^18.6.0"
},
"engines": {
"node": ">=18"
},
"private": true,
"devDependencies": {
"cross-env": "7.0.3",
"eslint": "^8.23.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "8.1.3",
"node-mocks-http": "1.9.0",
"nodemon": "2.0.5",
"sequelize-cli": "6.6.2"
"mocha": "^10.0.0",
"node-mocks-http": "^1.17.0",
"nodemon": "^3.0.0",
"sequelize-cli": "^6.6.5"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{}

View File

@ -12,11 +12,11 @@
"@emotion/styled": "^11.11.0",
"@mdi/js": "^7.4.47",
"@mui/material": "^6.3.0",
"@mui/x-data-grid": "^6.19.2",
"@mui/x-data-grid": "^7.0.0",
"@reduxjs/toolkit": "^2.1.0",
"@tailwindcss/typography": "^0.5.13",
"@tinymce/tinymce-react": "^4.3.2",
"apexcharts": "^3.45.2",
"apexcharts": "^5.0.0",
"axios": "^1.8.4",
"chart.js": "^4.4.1",
"chroma-js": "^2.4.2",
@ -30,7 +30,7 @@
"intro.js": "^7.2.0",
"intro.js-react": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^3.1.2",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"next": "^15.3.1",
@ -38,20 +38,20 @@
"numeral": "^2.0.6",
"query-string": "^8.1.0",
"react": "^19.0.0",
"react-apexcharts": "^1.4.1",
"react-big-calendar": "^1.10.3",
"react-chartjs-2": "^4.3.1",
"react-datepicker": "^4.10.0",
"react-apexcharts": "^2.0.0",
"react-big-calendar": "^1.19.0",
"react-chartjs-2": "^5.0.0",
"react-datepicker": "^7.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.0.0",
"react-i18next": "^15.5.1",
"react-redux": "^8.0.2",
"react-redux": "^9.0.0",
"react-select": "^5.7.0",
"react-select-async-paginate": "^0.7.9",
"react-switch": "^7.0.0",
"react-toastify": "^11.0.2",
"swr": "^1.3.0",
"swr": "^2.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {

View File

@ -380,9 +380,9 @@ const AssetsTablesPage = () => {
</p>
)}
{(uploadQueues[section.key] || []).length > 0 && (
{(uploadQueues[section.key] || []).filter(item => item.status !== 'success').length > 0 && (
<ul className='space-y-1 mb-3 max-h-40 overflow-auto'>
{(uploadQueues[section.key] || []).map((item) => (
{(uploadQueues[section.key] || []).filter(item => item.status !== 'success').map((item) => (
<li key={item.id} className='text-xs border border-gray-200 dark:border-dark-700 rounded p-2'>
<div className='flex items-center justify-between gap-2'>
<span className='truncate'>{item.fileName}</span>

File diff suppressed because it is too large Load Diff