mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 23:30:32 +00:00
fix: Display country name
This commit is contained in:
@@ -29,5 +29,8 @@
|
|||||||
"hooks": {
|
"hooks": {
|
||||||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"tsup": "^8.3.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1
packages/bigcapital-utils/.gitignore
vendored
Normal file
1
packages/bigcapital-utils/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/dist
|
||||||
22
packages/bigcapital-utils/package.json
Normal file
22
packages/bigcapital-utils/package.json
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"name": "@bigcapital/utils",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "",
|
||||||
|
"main": "./dist/index.js",
|
||||||
|
"module": "./dist/index.mjs",
|
||||||
|
"types": "./dist/index.d.ts",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"require": "./dist/index.js",
|
||||||
|
"import": "./dist/index.mjs"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"build:cjs": "tsup src/index.ts --format cjs --dts --sourcemap",
|
||||||
|
"build:esm": "tsup src/index.ts --format esm --dts --sourcemap",
|
||||||
|
"build": "npm run build:cjs && npm run build:esm",
|
||||||
|
"dev": "npm run build -- --watch"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "ISC"
|
||||||
|
}
|
||||||
@@ -1,13 +1,4 @@
|
|||||||
interface Country {
|
import { Country } from './types';
|
||||||
name: string;
|
|
||||||
native: string;
|
|
||||||
phone: number[];
|
|
||||||
continent: string;
|
|
||||||
continents?: string[];
|
|
||||||
capital: string;
|
|
||||||
currency: string[];
|
|
||||||
languages: string[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export const Countries: Record<string, Country> = {
|
export const Countries: Record<string, Country> = {
|
||||||
AD: {
|
AD: {
|
||||||
20
packages/bigcapital-utils/src/countries/index.ts
Normal file
20
packages/bigcapital-utils/src/countries/index.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
import { Countries } from './constant';
|
||||||
|
import { Country, Maybe } from './types';
|
||||||
|
|
||||||
|
export const getAllCountries = () => {
|
||||||
|
return Object.keys(Countries).map((countryCode) => {
|
||||||
|
return {
|
||||||
|
...Countries[countryCode],
|
||||||
|
countryCode,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const findByIsoCountryCode = (
|
||||||
|
isoCode: string
|
||||||
|
): Maybe<Country & { countryCode: string }> => {
|
||||||
|
const _isoCode = isoCode?.toUpperCase();
|
||||||
|
const country = Countries[_isoCode];
|
||||||
|
|
||||||
|
return country ? { ...country, countryCode: isoCode } : null;
|
||||||
|
};
|
||||||
12
packages/bigcapital-utils/src/countries/types.ts
Normal file
12
packages/bigcapital-utils/src/countries/types.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
export interface Country {
|
||||||
|
name: string;
|
||||||
|
native: string;
|
||||||
|
phone: number[];
|
||||||
|
continent: string;
|
||||||
|
continents?: string[];
|
||||||
|
capital: string;
|
||||||
|
currency: string[];
|
||||||
|
languages: string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Maybe<T> = T | null;
|
||||||
3
packages/bigcapital-utils/src/index.ts
Normal file
3
packages/bigcapital-utils/src/index.ts
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
export * from './countries';
|
||||||
|
|
||||||
|
export const test = () => {};
|
||||||
17
packages/bigcapital-utils/tsconfig.json
Normal file
17
packages/bigcapital-utils/tsconfig.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "ES6", // Equivalent to ES6 output
|
||||||
|
"module": "ESNext", // CommonJS for Node.js compatibility
|
||||||
|
"outDir": "dist", // Output directory for compiled files
|
||||||
|
"declaration": true, // Generates .d.ts files (same as dts: true)
|
||||||
|
"declarationDir": "dist", // Specifies where to output declaration files
|
||||||
|
"sourceMap": true, // Generate sourcemaps
|
||||||
|
"esModuleInterop": true, // Enables interop between CommonJS and ESModules
|
||||||
|
"strict": true, // Enables strict type-checking options
|
||||||
|
"moduleResolution": "node", // Resolve modules using Node.js-style resolution
|
||||||
|
"skipLibCheck": true, // Skip type checking of declaration files
|
||||||
|
"forceConsistentCasingInFileNames": true // Enforces consistent casing in import paths
|
||||||
|
},
|
||||||
|
"include": ["src/**/*"], // Includes all TypeScript files in the src directory
|
||||||
|
"exclude": ["node_modules"] // Excludes node_modules from being compiled
|
||||||
|
}
|
||||||
@@ -22,6 +22,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.576.0",
|
"@aws-sdk/client-s3": "^3.576.0",
|
||||||
"@aws-sdk/s3-request-presigner": "^3.583.0",
|
"@aws-sdk/s3-request-presigner": "^3.583.0",
|
||||||
|
"@bigcapital/utils": "*",
|
||||||
"@casl/ability": "^5.4.3",
|
"@casl/ability": "^5.4.3",
|
||||||
"@hapi/boom": "^7.4.3",
|
"@hapi/boom": "^7.4.3",
|
||||||
"@lemonsqueezy/lemonsqueezy.js": "^2.2.0",
|
"@lemonsqueezy/lemonsqueezy.js": "^2.2.0",
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import {
|
|||||||
organizationAddressTextFormat,
|
organizationAddressTextFormat,
|
||||||
} from '@/utils/address-text-format';
|
} from '@/utils/address-text-format';
|
||||||
import BaseModel from 'models/Model';
|
import BaseModel from 'models/Model';
|
||||||
|
import { findByIsoCountryCode } from '@bigcapital/utils';
|
||||||
import { getUploadedObjectUri } from '../../services/Attachments/utils';
|
import { getUploadedObjectUri } from '../../services/Attachments/utils';
|
||||||
|
|
||||||
export default class TenantMetadata extends BaseModel {
|
export default class TenantMetadata extends BaseModel {
|
||||||
@@ -70,6 +71,8 @@ export default class TenantMetadata extends BaseModel {
|
|||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
public get addressTextFormatted() {
|
public get addressTextFormatted() {
|
||||||
|
const addressCountry = findByIsoCountryCode(this.location);
|
||||||
|
|
||||||
return organizationAddressTextFormat(defaultOrganizationAddressFormat, {
|
return organizationAddressTextFormat(defaultOrganizationAddressFormat, {
|
||||||
organizationName: this.name,
|
organizationName: this.name,
|
||||||
address1: this.address?.address1,
|
address1: this.address?.address1,
|
||||||
@@ -78,7 +81,7 @@ export default class TenantMetadata extends BaseModel {
|
|||||||
city: this.address?.city,
|
city: this.address?.city,
|
||||||
postalCode: this.address?.postalCode,
|
postalCode: this.address?.postalCode,
|
||||||
phone: this.address?.phone,
|
phone: this.address?.phone,
|
||||||
country: 'United State',
|
country: addressCountry?.name ?? '',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
"version": "0.10.2",
|
"version": "0.10.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@bigcapital/utils": "*",
|
||||||
"@blueprintjs-formik/core": "^0.3.6",
|
"@blueprintjs-formik/core": "^0.3.6",
|
||||||
"@blueprintjs-formik/datetime": "^0.3.7",
|
"@blueprintjs-formik/datetime": "^0.3.7",
|
||||||
"@blueprintjs-formik/select": "^0.3.5",
|
"@blueprintjs-formik/select": "^0.3.5",
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import { Button, FormGroup, Intent } from '@blueprintjs/core';
|
|||||||
import { TimezonePicker } from '@blueprintjs/timezone';
|
import { TimezonePicker } from '@blueprintjs/timezone';
|
||||||
import { ErrorMessage, FastField } from 'formik';
|
import { ErrorMessage, FastField } from 'formik';
|
||||||
import { useHistory } from 'react-router-dom';
|
import { useHistory } from 'react-router-dom';
|
||||||
|
import { getAllCountries } from '@bigcapital/utils';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
FieldRequiredHint,
|
FieldRequiredHint,
|
||||||
@@ -23,7 +24,6 @@ import { getAllCurrenciesOptions } from '@/constants/currencies';
|
|||||||
import { getFiscalYear } from '@/constants/fiscalYearOptions';
|
import { getFiscalYear } from '@/constants/fiscalYearOptions';
|
||||||
import { getLanguages } from '@/constants/languagesOptions';
|
import { getLanguages } from '@/constants/languagesOptions';
|
||||||
import { useGeneralFormContext } from './GeneralFormProvider';
|
import { useGeneralFormContext } from './GeneralFormProvider';
|
||||||
import { getAllCountries } from '@/utils/countries';
|
|
||||||
|
|
||||||
import { shouldBaseCurrencyUpdate } from './utils';
|
import { shouldBaseCurrencyUpdate } from './utils';
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { FastField, Form, ErrorMessage } from 'formik';
|
|||||||
import { Button, Intent, FormGroup, Classes } from '@blueprintjs/core';
|
import { Button, Intent, FormGroup, Classes } from '@blueprintjs/core';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import { TimezonePicker } from '@blueprintjs/timezone';
|
import { TimezonePicker } from '@blueprintjs/timezone';
|
||||||
|
import { getAllCountries } from '@bigcapital/utils';
|
||||||
import {
|
import {
|
||||||
FFormGroup,
|
FFormGroup,
|
||||||
FInputGroup,
|
FInputGroup,
|
||||||
@@ -17,7 +18,6 @@ import { inputIntent } from '@/utils';
|
|||||||
import { getFiscalYear } from '@/constants/fiscalYearOptions';
|
import { getFiscalYear } from '@/constants/fiscalYearOptions';
|
||||||
import { getLanguages } from '@/constants/languagesOptions';
|
import { getLanguages } from '@/constants/languagesOptions';
|
||||||
import { getAllCurrenciesOptions } from '@/constants/currencies';
|
import { getAllCurrenciesOptions } from '@/constants/currencies';
|
||||||
import { getAllCountries } from '@/utils/countries';
|
|
||||||
|
|
||||||
const countries = getAllCountries();
|
const countries = getAllCountries();
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
import { Countries } from '@/constants/countries';
|
|
||||||
|
|
||||||
export const getAllCountries = () => {
|
|
||||||
return Object.keys(Countries).map((countryCode) => {
|
|
||||||
return {
|
|
||||||
...Countries[countryCode],
|
|
||||||
countryCode,
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
614
pnpm-lock.yaml
generated
614
pnpm-lock.yaml
generated
@@ -7,6 +7,10 @@ settings:
|
|||||||
importers:
|
importers:
|
||||||
|
|
||||||
.:
|
.:
|
||||||
|
dependencies:
|
||||||
|
tsup:
|
||||||
|
specifier: ^8.3.0
|
||||||
|
version: 8.3.0(typescript@4.9.5)
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@commitlint/cli':
|
'@commitlint/cli':
|
||||||
specifier: ^17.4.2
|
specifier: ^17.4.2
|
||||||
@@ -33,6 +37,8 @@ importers:
|
|||||||
specifier: ^9.0.5
|
specifier: ^9.0.5
|
||||||
version: 9.1.2
|
version: 9.1.2
|
||||||
|
|
||||||
|
packages/bigcapital-utils: {}
|
||||||
|
|
||||||
packages/server:
|
packages/server:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@aws-sdk/client-s3':
|
'@aws-sdk/client-s3':
|
||||||
@@ -41,6 +47,9 @@ importers:
|
|||||||
'@aws-sdk/s3-request-presigner':
|
'@aws-sdk/s3-request-presigner':
|
||||||
specifier: ^3.583.0
|
specifier: ^3.583.0
|
||||||
version: 3.583.0
|
version: 3.583.0
|
||||||
|
'@bigcapital/utils':
|
||||||
|
specifier: '*'
|
||||||
|
version: link:../bigcapital-utils
|
||||||
'@casl/ability':
|
'@casl/ability':
|
||||||
specifier: ^5.4.3
|
specifier: ^5.4.3
|
||||||
version: 5.4.4
|
version: 5.4.4
|
||||||
@@ -455,7 +464,7 @@ importers:
|
|||||||
version: 3.9.10
|
version: 3.9.10
|
||||||
webpack:
|
webpack:
|
||||||
specifier: ^5.75.0
|
specifier: ^5.75.0
|
||||||
version: 5.91.0(webpack-cli@4.10.0)
|
version: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
webpack-cli:
|
webpack-cli:
|
||||||
specifier: ^4.10.0
|
specifier: ^4.10.0
|
||||||
version: 4.10.0(webpack@5.91.0)
|
version: 4.10.0(webpack@5.91.0)
|
||||||
@@ -471,6 +480,9 @@ importers:
|
|||||||
|
|
||||||
packages/webapp:
|
packages/webapp:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@bigcapital/utils':
|
||||||
|
specifier: '*'
|
||||||
|
version: link:../bigcapital-utils
|
||||||
'@blueprintjs-formik/core':
|
'@blueprintjs-formik/core':
|
||||||
specifier: ^0.3.6
|
specifier: ^0.3.6
|
||||||
version: 0.3.6(@babel/core@7.24.5)(@blueprintjs/core@4.20.2)(@blueprintjs/select@4.9.24)(formik@2.4.6)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
|
version: 0.3.6(@babel/core@7.24.5)(@blueprintjs/core@4.20.2)(@blueprintjs/select@4.9.24)(formik@2.4.6)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1)
|
||||||
@@ -755,7 +767,7 @@ importers:
|
|||||||
version: 5.3.4(react@18.3.1)
|
version: 5.3.4(react@18.3.1)
|
||||||
react-scripts:
|
react-scripts:
|
||||||
specifier: 5.0.1
|
specifier: 5.0.1
|
||||||
version: 5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(react@18.3.1)(sass@1.77.2)(ts-node@10.9.2)(typescript@4.9.5)
|
version: 5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.23.1)(eslint@8.57.0)(react@18.3.1)(sass@1.77.2)(ts-node@10.9.2)(typescript@4.9.5)
|
||||||
react-scroll-sync:
|
react-scroll-sync:
|
||||||
specifier: ^0.7.1
|
specifier: ^0.7.1
|
||||||
version: 0.7.1(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1)
|
version: 0.7.1(prop-types@15.8.1)(react-dom@18.3.1)(react@18.3.1)
|
||||||
@@ -3531,7 +3543,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
cross-spawn: 7.0.3
|
cross-spawn: 7.0.3
|
||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(react@18.3.1)(sass@1.77.2)(ts-node@10.9.2)(typescript@4.9.5)
|
react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.23.1)(eslint@8.57.0)(react@18.3.1)(sass@1.77.2)(ts-node@10.9.2)(typescript@4.9.5)
|
||||||
webpack-merge: 4.2.2
|
webpack-merge: 4.2.2
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@@ -3789,6 +3801,198 @@ packages:
|
|||||||
resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
|
resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@esbuild/aix-ppc64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [ppc64]
|
||||||
|
os: [aix]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/android-arm64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [android]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/android-arm@0.23.1:
|
||||||
|
resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [arm]
|
||||||
|
os: [android]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/android-x64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [android]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/darwin-arm64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [darwin]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/darwin-x64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [darwin]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/freebsd-arm64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [freebsd]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/freebsd-x64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [freebsd]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-arm64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-arm@0.23.1:
|
||||||
|
resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [arm]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-ia32@0.23.1:
|
||||||
|
resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [ia32]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-loong64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [loong64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-mips64el@0.23.1:
|
||||||
|
resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [mips64el]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-ppc64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [ppc64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-riscv64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [riscv64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-s390x@0.23.1:
|
||||||
|
resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [s390x]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/linux-x64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/netbsd-x64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [netbsd]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/openbsd-arm64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [openbsd]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/openbsd-x64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [openbsd]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/sunos-x64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [sunos]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/win32-arm64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [win32]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/win32-ia32@0.23.1:
|
||||||
|
resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [ia32]
|
||||||
|
os: [win32]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@esbuild/win32-x64@0.23.1:
|
||||||
|
resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [win32]
|
||||||
|
requiresBuild: true
|
||||||
|
optional: true
|
||||||
|
|
||||||
/@eslint-community/eslint-utils@4.4.0(eslint@8.57.0):
|
/@eslint-community/eslint-utils@4.4.0(eslint@8.57.0):
|
||||||
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
|
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
|
||||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||||
@@ -5003,7 +5207,7 @@ packages:
|
|||||||
react-refresh: 0.11.0
|
react-refresh: 0.11.0
|
||||||
schema-utils: 3.3.0
|
schema-utils: 3.3.0
|
||||||
source-map: 0.7.4
|
source-map: 0.7.4
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
webpack-dev-server: 4.15.2(webpack@5.91.0)
|
webpack-dev-server: 4.15.2(webpack@5.91.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@@ -5137,6 +5341,134 @@ packages:
|
|||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@rollup/rollup-android-arm-eabi@4.24.0:
|
||||||
|
resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==}
|
||||||
|
cpu: [arm]
|
||||||
|
os: [android]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-android-arm64@4.24.0:
|
||||||
|
resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [android]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-darwin-arm64@4.24.0:
|
||||||
|
resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [darwin]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-darwin-x64@4.24.0:
|
||||||
|
resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [darwin]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-arm-gnueabihf@4.24.0:
|
||||||
|
resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==}
|
||||||
|
cpu: [arm]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-arm-musleabihf@4.24.0:
|
||||||
|
resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==}
|
||||||
|
cpu: [arm]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-arm64-gnu@4.24.0:
|
||||||
|
resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-arm64-musl@4.24.0:
|
||||||
|
resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-powerpc64le-gnu@4.24.0:
|
||||||
|
resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==}
|
||||||
|
cpu: [ppc64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-riscv64-gnu@4.24.0:
|
||||||
|
resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==}
|
||||||
|
cpu: [riscv64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-s390x-gnu@4.24.0:
|
||||||
|
resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==}
|
||||||
|
cpu: [s390x]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-x64-gnu@4.24.0:
|
||||||
|
resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-linux-x64-musl@4.24.0:
|
||||||
|
resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [linux]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-win32-arm64-msvc@4.24.0:
|
||||||
|
resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==}
|
||||||
|
cpu: [arm64]
|
||||||
|
os: [win32]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-win32-ia32-msvc@4.24.0:
|
||||||
|
resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==}
|
||||||
|
cpu: [ia32]
|
||||||
|
os: [win32]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
|
/@rollup/rollup-win32-x64-msvc@4.24.0:
|
||||||
|
resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==}
|
||||||
|
cpu: [x64]
|
||||||
|
os: [win32]
|
||||||
|
requiresBuild: true
|
||||||
|
dev: false
|
||||||
|
optional: true
|
||||||
|
|
||||||
/@rushstack/eslint-patch@1.10.3:
|
/@rushstack/eslint-patch@1.10.3:
|
||||||
resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==}
|
resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==}
|
||||||
dev: false
|
dev: false
|
||||||
@@ -6362,6 +6694,10 @@ packages:
|
|||||||
/@types/estree@1.0.5:
|
/@types/estree@1.0.5:
|
||||||
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
|
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
|
||||||
|
|
||||||
|
/@types/estree@1.0.6:
|
||||||
|
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@types/express-serve-static-core@4.19.1:
|
/@types/express-serve-static-core@4.19.1:
|
||||||
resolution: {integrity: sha512-ej0phymbFLoCB26dbbq5PGScsf2JAJ4IJHjG10LalgUV36XKTmA4GdA+PVllKvRk0sEKt64X8975qFnkSi0hqA==}
|
resolution: {integrity: sha512-ej0phymbFLoCB26dbbq5PGScsf2JAJ4IJHjG10LalgUV36XKTmA4GdA+PVllKvRk0sEKt64X8975qFnkSi0hqA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -7266,7 +7602,7 @@ packages:
|
|||||||
webpack: 4.x.x || 5.x.x
|
webpack: 4.x.x || 5.x.x
|
||||||
webpack-cli: 4.x.x
|
webpack-cli: 4.x.x
|
||||||
dependencies:
|
dependencies:
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
webpack-cli: 4.10.0(webpack@5.91.0)
|
webpack-cli: 4.10.0(webpack@5.91.0)
|
||||||
|
|
||||||
/@webpack-cli/info@1.5.0(webpack-cli@4.10.0):
|
/@webpack-cli/info@1.5.0(webpack-cli@4.10.0):
|
||||||
@@ -8198,7 +8534,7 @@ packages:
|
|||||||
loader-utils: 2.0.4
|
loader-utils: 2.0.4
|
||||||
make-dir: 3.1.0
|
make-dir: 3.1.0
|
||||||
schema-utils: 2.7.1
|
schema-utils: 2.7.1
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/babel-loader@9.1.3(@babel/core@7.24.5)(webpack@5.91.0):
|
/babel-loader@9.1.3(@babel/core@7.24.5)(webpack@5.91.0):
|
||||||
@@ -8211,7 +8547,7 @@ packages:
|
|||||||
'@babel/core': 7.24.5
|
'@babel/core': 7.24.5
|
||||||
find-cache-dir: 4.0.0
|
find-cache-dir: 4.0.0
|
||||||
schema-utils: 4.2.0
|
schema-utils: 4.2.0
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/babel-plugin-emotion@10.2.2:
|
/babel-plugin-emotion@10.2.2:
|
||||||
@@ -8932,6 +9268,16 @@ packages:
|
|||||||
semver: 7.6.2
|
semver: 7.6.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/bundle-require@5.0.0(esbuild@0.23.1):
|
||||||
|
resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==}
|
||||||
|
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
||||||
|
peerDependencies:
|
||||||
|
esbuild: '>=0.18'
|
||||||
|
dependencies:
|
||||||
|
esbuild: 0.23.1
|
||||||
|
load-tsconfig: 0.2.5
|
||||||
|
dev: false
|
||||||
|
|
||||||
/busboy@1.6.0:
|
/busboy@1.6.0:
|
||||||
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
||||||
engines: {node: '>=10.16.0'}
|
engines: {node: '>=10.16.0'}
|
||||||
@@ -8954,6 +9300,11 @@ packages:
|
|||||||
engines: {node: '>= 0.8'}
|
engines: {node: '>= 0.8'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/cac@6.7.14:
|
||||||
|
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
|
||||||
|
engines: {node: '>=8'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/cacache@17.1.4:
|
/cacache@17.1.4:
|
||||||
resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==}
|
resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==}
|
||||||
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
||||||
@@ -9716,6 +10067,11 @@ packages:
|
|||||||
engines: {node: '>=0.8'}
|
engines: {node: '>=0.8'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/consola@3.2.3:
|
||||||
|
resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
|
||||||
|
engines: {node: ^14.18.0 || >=16.10.0}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/console-browserify@1.2.0:
|
/console-browserify@1.2.0:
|
||||||
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
|
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -10261,10 +10617,10 @@ packages:
|
|||||||
postcss-modules-values: 4.0.0(postcss@8.4.38)
|
postcss-modules-values: 4.0.0(postcss@8.4.38)
|
||||||
postcss-value-parser: 4.2.0
|
postcss-value-parser: 4.2.0
|
||||||
semver: 7.6.2
|
semver: 7.6.2
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/css-minimizer-webpack-plugin@3.4.1(webpack@5.91.0):
|
/css-minimizer-webpack-plugin@3.4.1(esbuild@0.23.1)(webpack@5.91.0):
|
||||||
resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==}
|
resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==}
|
||||||
engines: {node: '>= 12.13.0'}
|
engines: {node: '>= 12.13.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -10284,12 +10640,13 @@ packages:
|
|||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
cssnano: 5.1.15(postcss@8.4.38)
|
cssnano: 5.1.15(postcss@8.4.38)
|
||||||
|
esbuild: 0.23.1
|
||||||
jest-worker: 27.5.1
|
jest-worker: 27.5.1
|
||||||
postcss: 8.4.38
|
postcss: 8.4.38
|
||||||
schema-utils: 4.2.0
|
schema-utils: 4.2.0
|
||||||
serialize-javascript: 6.0.2
|
serialize-javascript: 6.0.2
|
||||||
source-map: 0.6.1
|
source-map: 0.6.1
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/css-prefers-color-scheme@6.0.3(postcss@8.4.38):
|
/css-prefers-color-scheme@6.0.3(postcss@8.4.38):
|
||||||
@@ -10646,6 +11003,18 @@ packages:
|
|||||||
ms: 2.1.2
|
ms: 2.1.2
|
||||||
supports-color: 5.5.0
|
supports-color: 5.5.0
|
||||||
|
|
||||||
|
/debug@4.3.7:
|
||||||
|
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
|
||||||
|
engines: {node: '>=6.0'}
|
||||||
|
peerDependencies:
|
||||||
|
supports-color: '*'
|
||||||
|
peerDependenciesMeta:
|
||||||
|
supports-color:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
ms: 2.1.3
|
||||||
|
dev: false
|
||||||
|
|
||||||
/decamelize-keys@1.1.1:
|
/decamelize-keys@1.1.1:
|
||||||
resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
|
resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@@ -11125,7 +11494,7 @@ packages:
|
|||||||
webpack: ^4 || ^5
|
webpack: ^4 || ^5
|
||||||
dependencies:
|
dependencies:
|
||||||
dotenv-defaults: 2.0.2
|
dotenv-defaults: 2.0.2
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/dotenv@10.0.0:
|
/dotenv@10.0.0:
|
||||||
@@ -11515,6 +11884,37 @@ packages:
|
|||||||
es6-symbol: 3.1.4
|
es6-symbol: 3.1.4
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/esbuild@0.23.1:
|
||||||
|
resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
hasBin: true
|
||||||
|
requiresBuild: true
|
||||||
|
optionalDependencies:
|
||||||
|
'@esbuild/aix-ppc64': 0.23.1
|
||||||
|
'@esbuild/android-arm': 0.23.1
|
||||||
|
'@esbuild/android-arm64': 0.23.1
|
||||||
|
'@esbuild/android-x64': 0.23.1
|
||||||
|
'@esbuild/darwin-arm64': 0.23.1
|
||||||
|
'@esbuild/darwin-x64': 0.23.1
|
||||||
|
'@esbuild/freebsd-arm64': 0.23.1
|
||||||
|
'@esbuild/freebsd-x64': 0.23.1
|
||||||
|
'@esbuild/linux-arm': 0.23.1
|
||||||
|
'@esbuild/linux-arm64': 0.23.1
|
||||||
|
'@esbuild/linux-ia32': 0.23.1
|
||||||
|
'@esbuild/linux-loong64': 0.23.1
|
||||||
|
'@esbuild/linux-mips64el': 0.23.1
|
||||||
|
'@esbuild/linux-ppc64': 0.23.1
|
||||||
|
'@esbuild/linux-riscv64': 0.23.1
|
||||||
|
'@esbuild/linux-s390x': 0.23.1
|
||||||
|
'@esbuild/linux-x64': 0.23.1
|
||||||
|
'@esbuild/netbsd-x64': 0.23.1
|
||||||
|
'@esbuild/openbsd-arm64': 0.23.1
|
||||||
|
'@esbuild/openbsd-x64': 0.23.1
|
||||||
|
'@esbuild/sunos-x64': 0.23.1
|
||||||
|
'@esbuild/win32-arm64': 0.23.1
|
||||||
|
'@esbuild/win32-ia32': 0.23.1
|
||||||
|
'@esbuild/win32-x64': 0.23.1
|
||||||
|
|
||||||
/escalade@3.1.2:
|
/escalade@3.1.2:
|
||||||
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
|
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
|
||||||
engines: {node: '>=6'}
|
engines: {node: '>=6'}
|
||||||
@@ -11691,7 +12091,7 @@ packages:
|
|||||||
node-libs-browser: 2.2.1
|
node-libs-browser: 2.2.1
|
||||||
resolve: 1.22.8
|
resolve: 1.22.8
|
||||||
semver: 5.7.2
|
semver: 5.7.2
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
@@ -11709,7 +12109,7 @@ packages:
|
|||||||
object-assign: 4.1.1
|
object-assign: 4.1.1
|
||||||
object-hash: 1.3.1
|
object-hash: 1.3.1
|
||||||
rimraf: 2.7.1
|
rimraf: 2.7.1
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint-import-resolver-webpack@0.11.1)(eslint@8.57.0):
|
/eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint-import-resolver-webpack@0.11.1)(eslint@8.57.0):
|
||||||
@@ -12001,7 +12401,7 @@ packages:
|
|||||||
micromatch: 4.0.7
|
micromatch: 4.0.7
|
||||||
normalize-path: 3.0.0
|
normalize-path: 3.0.0
|
||||||
schema-utils: 4.2.0
|
schema-utils: 4.2.0
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/eslint@8.57.0:
|
/eslint@8.57.0:
|
||||||
@@ -12512,6 +12912,17 @@ packages:
|
|||||||
pend: 1.2.0
|
pend: 1.2.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/fdir@6.4.0(picomatch@4.0.2):
|
||||||
|
resolution: {integrity: sha512-3oB133prH1o4j/L5lLW7uOCF1PlD+/It2L0eL/iAqWMB91RBbqTewABqxhj0ibBd90EEmWZq7ntIWzVaWcXTGQ==}
|
||||||
|
peerDependencies:
|
||||||
|
picomatch: ^3 || ^4
|
||||||
|
peerDependenciesMeta:
|
||||||
|
picomatch:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
picomatch: 4.0.2
|
||||||
|
dev: false
|
||||||
|
|
||||||
/feature-policy@0.3.0:
|
/feature-policy@0.3.0:
|
||||||
resolution: {integrity: sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==}
|
resolution: {integrity: sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==}
|
||||||
engines: {node: '>=4.0.0'}
|
engines: {node: '>=4.0.0'}
|
||||||
@@ -12542,7 +12953,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
loader-utils: 2.0.4
|
loader-utils: 2.0.4
|
||||||
schema-utils: 3.3.0
|
schema-utils: 3.3.0
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/file-selector@0.4.0:
|
/file-selector@0.4.0:
|
||||||
@@ -12835,7 +13246,7 @@ packages:
|
|||||||
semver: 5.7.2
|
semver: 5.7.2
|
||||||
tapable: 1.1.3
|
tapable: 1.1.3
|
||||||
typescript: 4.9.5
|
typescript: 4.9.5
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
worker-rpc: 0.1.1
|
worker-rpc: 0.1.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -12870,7 +13281,7 @@ packages:
|
|||||||
semver: 7.6.2
|
semver: 7.6.2
|
||||||
tapable: 1.1.3
|
tapable: 1.1.3
|
||||||
typescript: 4.9.5
|
typescript: 4.9.5
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/form-data@2.3.3:
|
/form-data@2.3.3:
|
||||||
@@ -13034,7 +13445,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
|
resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
|
||||||
engines: {node: '>= 4.0'}
|
engines: {node: '>= 4.0'}
|
||||||
os: [darwin]
|
os: [darwin]
|
||||||
deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2
|
deprecated: Upgrade to fsevents v2 to mitigate potential security issues
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dependencies:
|
dependencies:
|
||||||
bindings: 1.5.0
|
bindings: 1.5.0
|
||||||
@@ -13995,7 +14406,7 @@ packages:
|
|||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
pretty-error: 4.0.0
|
pretty-error: 4.0.0
|
||||||
tapable: 2.2.1
|
tapable: 2.2.1
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/htmlparser2@6.1.0:
|
/htmlparser2@6.1.0:
|
||||||
@@ -16167,6 +16578,11 @@ packages:
|
|||||||
hasBin: true
|
hasBin: true
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/joycon@3.1.1:
|
||||||
|
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
|
||||||
|
engines: {node: '>=10'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/js-cookie@2.2.1:
|
/js-cookie@2.2.1:
|
||||||
resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
|
resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
|
||||||
dev: false
|
dev: false
|
||||||
@@ -16903,6 +17319,11 @@ packages:
|
|||||||
type-fest: 0.6.0
|
type-fest: 0.6.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/load-tsconfig@0.2.5:
|
||||||
|
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
|
||||||
|
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/loader-fs-cache@1.0.3:
|
/loader-fs-cache@1.0.3:
|
||||||
resolution: {integrity: sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==}
|
resolution: {integrity: sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -17592,7 +18013,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
schema-utils: 4.2.0
|
schema-utils: 4.2.0
|
||||||
tapable: 2.2.1
|
tapable: 2.2.1
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/minimalistic-assert@1.0.1:
|
/minimalistic-assert@1.0.1:
|
||||||
@@ -19546,6 +19967,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
||||||
engines: {node: '>=8.6'}
|
engines: {node: '>=8.6'}
|
||||||
|
|
||||||
|
/picomatch@4.0.2:
|
||||||
|
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/pidtree@0.3.1:
|
/pidtree@0.3.1:
|
||||||
resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
|
resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
|
||||||
engines: {node: '>=0.10'}
|
engines: {node: '>=0.10'}
|
||||||
@@ -20041,6 +20467,27 @@ packages:
|
|||||||
yaml: 2.4.2
|
yaml: 2.4.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/postcss-load-config@6.0.1:
|
||||||
|
resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
|
||||||
|
engines: {node: '>= 18'}
|
||||||
|
peerDependencies:
|
||||||
|
jiti: '>=1.21.0'
|
||||||
|
postcss: '>=8.0.9'
|
||||||
|
tsx: ^4.8.1
|
||||||
|
yaml: ^2.4.2
|
||||||
|
peerDependenciesMeta:
|
||||||
|
jiti:
|
||||||
|
optional: true
|
||||||
|
postcss:
|
||||||
|
optional: true
|
||||||
|
tsx:
|
||||||
|
optional: true
|
||||||
|
yaml:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
lilconfig: 3.1.1
|
||||||
|
dev: false
|
||||||
|
|
||||||
/postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.91.0):
|
/postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.91.0):
|
||||||
resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
|
resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
|
||||||
engines: {node: '>= 12.13.0'}
|
engines: {node: '>= 12.13.0'}
|
||||||
@@ -20052,7 +20499,7 @@ packages:
|
|||||||
klona: 2.0.6
|
klona: 2.0.6
|
||||||
postcss: 8.4.38
|
postcss: 8.4.38
|
||||||
semver: 7.6.2
|
semver: 7.6.2
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/postcss-logical@5.0.4(postcss@8.4.38):
|
/postcss-logical@5.0.4(postcss@8.4.38):
|
||||||
@@ -20665,7 +21112,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
chalk: 3.0.0
|
chalk: 3.0.0
|
||||||
progress: 2.0.3
|
progress: 2.0.3
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/progress@2.0.1:
|
/progress@2.0.1:
|
||||||
@@ -21371,7 +21818,7 @@ packages:
|
|||||||
strip-ansi: 6.0.0
|
strip-ansi: 6.0.0
|
||||||
text-table: 0.2.0
|
text-table: 0.2.0
|
||||||
typescript: 4.9.5
|
typescript: 4.9.5
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- eslint
|
- eslint
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -21413,7 +21860,7 @@ packages:
|
|||||||
strip-ansi: 6.0.1
|
strip-ansi: 6.0.1
|
||||||
text-table: 0.2.0
|
text-table: 0.2.0
|
||||||
typescript: 4.9.5
|
typescript: 4.9.5
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- eslint
|
- eslint
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -21720,7 +22167,7 @@ packages:
|
|||||||
react-dom: 18.3.1(react@18.3.1)
|
react-dom: 18.3.1(react@18.3.1)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(react@18.3.1)(sass@1.77.2)(ts-node@10.9.2)(typescript@4.9.5):
|
/react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.23.1)(eslint@8.57.0)(react@18.3.1)(sass@1.77.2)(ts-node@10.9.2)(typescript@4.9.5):
|
||||||
resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==}
|
resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==}
|
||||||
engines: {node: '>=14.0.0'}
|
engines: {node: '>=14.0.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -21744,7 +22191,7 @@ packages:
|
|||||||
camelcase: 6.3.0
|
camelcase: 6.3.0
|
||||||
case-sensitive-paths-webpack-plugin: 2.4.0
|
case-sensitive-paths-webpack-plugin: 2.4.0
|
||||||
css-loader: 6.11.0(webpack@5.91.0)
|
css-loader: 6.11.0(webpack@5.91.0)
|
||||||
css-minimizer-webpack-plugin: 3.4.1(webpack@5.91.0)
|
css-minimizer-webpack-plugin: 3.4.1(esbuild@0.23.1)(webpack@5.91.0)
|
||||||
dotenv: 10.0.0
|
dotenv: 10.0.0
|
||||||
dotenv-expand: 5.1.0
|
dotenv-expand: 5.1.0
|
||||||
eslint: 8.57.0
|
eslint: 8.57.0
|
||||||
@@ -21775,9 +22222,9 @@ packages:
|
|||||||
source-map-loader: 3.0.2(webpack@5.91.0)
|
source-map-loader: 3.0.2(webpack@5.91.0)
|
||||||
style-loader: 3.3.4(webpack@5.91.0)
|
style-loader: 3.3.4(webpack@5.91.0)
|
||||||
tailwindcss: 3.4.3(ts-node@10.9.2)
|
tailwindcss: 3.4.3(ts-node@10.9.2)
|
||||||
terser-webpack-plugin: 5.3.10(webpack@5.91.0)
|
terser-webpack-plugin: 5.3.10(esbuild@0.23.1)(webpack@5.91.0)
|
||||||
typescript: 4.9.5
|
typescript: 4.9.5
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
webpack-dev-server: 4.15.2(webpack@5.91.0)
|
webpack-dev-server: 4.15.2(webpack@5.91.0)
|
||||||
webpack-manifest-plugin: 4.1.1(webpack@5.91.0)
|
webpack-manifest-plugin: 4.1.1(webpack@5.91.0)
|
||||||
workbox-webpack-plugin: 6.6.0(webpack@5.91.0)
|
workbox-webpack-plugin: 6.6.0(webpack@5.91.0)
|
||||||
@@ -22740,6 +23187,32 @@ packages:
|
|||||||
fsevents: 2.3.3
|
fsevents: 2.3.3
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/rollup@4.24.0:
|
||||||
|
resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==}
|
||||||
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
||||||
|
hasBin: true
|
||||||
|
dependencies:
|
||||||
|
'@types/estree': 1.0.6
|
||||||
|
optionalDependencies:
|
||||||
|
'@rollup/rollup-android-arm-eabi': 4.24.0
|
||||||
|
'@rollup/rollup-android-arm64': 4.24.0
|
||||||
|
'@rollup/rollup-darwin-arm64': 4.24.0
|
||||||
|
'@rollup/rollup-darwin-x64': 4.24.0
|
||||||
|
'@rollup/rollup-linux-arm-gnueabihf': 4.24.0
|
||||||
|
'@rollup/rollup-linux-arm-musleabihf': 4.24.0
|
||||||
|
'@rollup/rollup-linux-arm64-gnu': 4.24.0
|
||||||
|
'@rollup/rollup-linux-arm64-musl': 4.24.0
|
||||||
|
'@rollup/rollup-linux-powerpc64le-gnu': 4.24.0
|
||||||
|
'@rollup/rollup-linux-riscv64-gnu': 4.24.0
|
||||||
|
'@rollup/rollup-linux-s390x-gnu': 4.24.0
|
||||||
|
'@rollup/rollup-linux-x64-gnu': 4.24.0
|
||||||
|
'@rollup/rollup-linux-x64-musl': 4.24.0
|
||||||
|
'@rollup/rollup-win32-arm64-msvc': 4.24.0
|
||||||
|
'@rollup/rollup-win32-ia32-msvc': 4.24.0
|
||||||
|
'@rollup/rollup-win32-x64-msvc': 4.24.0
|
||||||
|
fsevents: 2.3.3
|
||||||
|
dev: false
|
||||||
|
|
||||||
/rope-sequence@1.3.4:
|
/rope-sequence@1.3.4:
|
||||||
resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==}
|
resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==}
|
||||||
dev: false
|
dev: false
|
||||||
@@ -22896,7 +23369,7 @@ packages:
|
|||||||
klona: 2.0.6
|
klona: 2.0.6
|
||||||
neo-async: 2.6.2
|
neo-async: 2.6.2
|
||||||
sass: 1.77.2
|
sass: 1.77.2
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/sass@1.77.2:
|
/sass@1.77.2:
|
||||||
@@ -23470,7 +23943,7 @@ packages:
|
|||||||
abab: 2.0.6
|
abab: 2.0.6
|
||||||
iconv-lite: 0.6.3
|
iconv-lite: 0.6.3
|
||||||
source-map-js: 1.2.0
|
source-map-js: 1.2.0
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/source-map-loader@4.0.2(webpack@5.91.0):
|
/source-map-loader@4.0.2(webpack@5.91.0):
|
||||||
@@ -23481,7 +23954,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
iconv-lite: 0.6.3
|
iconv-lite: 0.6.3
|
||||||
source-map-js: 1.2.0
|
source-map-js: 1.2.0
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/source-map-resolve@0.5.3:
|
/source-map-resolve@0.5.3:
|
||||||
@@ -24087,7 +24560,7 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
webpack: ^5.0.0
|
webpack: ^5.0.0
|
||||||
dependencies:
|
dependencies:
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/styled-components@5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1):
|
/styled-components@5.3.11(@babel/core@7.24.5)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1):
|
||||||
@@ -24411,7 +24884,7 @@ packages:
|
|||||||
supports-hyperlinks: 2.3.0
|
supports-hyperlinks: 2.3.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/terser-webpack-plugin@5.3.10(webpack@5.91.0):
|
/terser-webpack-plugin@5.3.10(esbuild@0.23.1)(webpack@5.91.0):
|
||||||
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
|
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
|
||||||
engines: {node: '>= 10.13.0'}
|
engines: {node: '>= 10.13.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -24428,11 +24901,12 @@ packages:
|
|||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/trace-mapping': 0.3.25
|
'@jridgewell/trace-mapping': 0.3.25
|
||||||
|
esbuild: 0.23.1
|
||||||
jest-worker: 27.5.1
|
jest-worker: 27.5.1
|
||||||
schema-utils: 3.3.0
|
schema-utils: 3.3.0
|
||||||
serialize-javascript: 6.0.2
|
serialize-javascript: 6.0.2
|
||||||
terser: 5.31.0
|
terser: 5.31.0
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
|
|
||||||
/terser@5.31.0:
|
/terser@5.31.0:
|
||||||
resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
|
resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
|
||||||
@@ -24577,6 +25051,14 @@ packages:
|
|||||||
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
|
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/tinyglobby@0.2.9:
|
||||||
|
resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==}
|
||||||
|
engines: {node: '>=12.0.0'}
|
||||||
|
dependencies:
|
||||||
|
fdir: 6.4.0(picomatch@4.0.2)
|
||||||
|
picomatch: 4.0.2
|
||||||
|
dev: false
|
||||||
|
|
||||||
/tippy.js@6.3.7:
|
/tippy.js@6.3.7:
|
||||||
resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==}
|
resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -24734,6 +25216,11 @@ packages:
|
|||||||
punycode: 2.3.1
|
punycode: 2.3.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/tree-kill@1.2.2:
|
||||||
|
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
|
||||||
|
hasBin: true
|
||||||
|
dev: false
|
||||||
|
|
||||||
/trim-newlines@3.0.1:
|
/trim-newlines@3.0.1:
|
||||||
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
|
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -24768,7 +25255,7 @@ packages:
|
|||||||
semver: 7.6.2
|
semver: 7.6.2
|
||||||
source-map: 0.7.4
|
source-map: 0.7.4
|
||||||
typescript: 3.9.10
|
typescript: 3.9.10
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/ts-node@10.9.2(@types/node@20.5.1)(typescript@4.9.5):
|
/ts-node@10.9.2(@types/node@20.5.1)(typescript@4.9.5):
|
||||||
@@ -24869,6 +25356,49 @@ packages:
|
|||||||
engines: {node: '>=0.6.x'}
|
engines: {node: '>=0.6.x'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/tsup@8.3.0(typescript@4.9.5):
|
||||||
|
resolution: {integrity: sha512-ALscEeyS03IomcuNdFdc0YWGVIkwH1Ws7nfTbAPuoILvEV2hpGQAY72LIOjglGo4ShWpZfpBqP/jpQVCzqYQag==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
hasBin: true
|
||||||
|
peerDependencies:
|
||||||
|
'@microsoft/api-extractor': ^7.36.0
|
||||||
|
'@swc/core': ^1
|
||||||
|
postcss: ^8.4.12
|
||||||
|
typescript: '>=4.5.0'
|
||||||
|
peerDependenciesMeta:
|
||||||
|
'@microsoft/api-extractor':
|
||||||
|
optional: true
|
||||||
|
'@swc/core':
|
||||||
|
optional: true
|
||||||
|
postcss:
|
||||||
|
optional: true
|
||||||
|
typescript:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
bundle-require: 5.0.0(esbuild@0.23.1)
|
||||||
|
cac: 6.7.14
|
||||||
|
chokidar: 3.6.0
|
||||||
|
consola: 3.2.3
|
||||||
|
debug: 4.3.7
|
||||||
|
esbuild: 0.23.1
|
||||||
|
execa: 5.1.1
|
||||||
|
joycon: 3.1.1
|
||||||
|
picocolors: 1.0.1
|
||||||
|
postcss-load-config: 6.0.1
|
||||||
|
resolve-from: 5.0.0
|
||||||
|
rollup: 4.24.0
|
||||||
|
source-map: 0.8.0-beta.0
|
||||||
|
sucrase: 3.35.0
|
||||||
|
tinyglobby: 0.2.9
|
||||||
|
tree-kill: 1.2.2
|
||||||
|
typescript: 4.9.5
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- jiti
|
||||||
|
- supports-color
|
||||||
|
- tsx
|
||||||
|
- yaml
|
||||||
|
dev: false
|
||||||
|
|
||||||
/tsutils@3.21.0(typescript@3.9.10):
|
/tsutils@3.21.0(typescript@3.9.10):
|
||||||
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
|
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
|
||||||
engines: {node: '>= 6'}
|
engines: {node: '>= 6'}
|
||||||
@@ -25669,7 +26199,7 @@ packages:
|
|||||||
import-local: 3.1.0
|
import-local: 3.1.0
|
||||||
interpret: 2.2.0
|
interpret: 2.2.0
|
||||||
rechoir: 0.7.1
|
rechoir: 0.7.1
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
webpack-merge: 5.10.0
|
webpack-merge: 5.10.0
|
||||||
|
|
||||||
/webpack-dev-middleware@5.3.4(webpack@5.91.0):
|
/webpack-dev-middleware@5.3.4(webpack@5.91.0):
|
||||||
@@ -25683,7 +26213,7 @@ packages:
|
|||||||
mime-types: 2.1.35
|
mime-types: 2.1.35
|
||||||
range-parser: 1.2.1
|
range-parser: 1.2.1
|
||||||
schema-utils: 4.2.0
|
schema-utils: 4.2.0
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/webpack-dev-server@4.15.2(webpack@5.91.0):
|
/webpack-dev-server@4.15.2(webpack@5.91.0):
|
||||||
@@ -25727,7 +26257,7 @@ packages:
|
|||||||
serve-index: 1.9.1
|
serve-index: 1.9.1
|
||||||
sockjs: 0.3.24
|
sockjs: 0.3.24
|
||||||
spdy: 4.0.2
|
spdy: 4.0.2
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
webpack-dev-middleware: 5.3.4(webpack@5.91.0)
|
webpack-dev-middleware: 5.3.4(webpack@5.91.0)
|
||||||
ws: 8.17.0
|
ws: 8.17.0
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -25744,7 +26274,7 @@ packages:
|
|||||||
webpack: ^4.44.2 || ^5.47.0
|
webpack: ^4.44.2 || ^5.47.0
|
||||||
dependencies:
|
dependencies:
|
||||||
tapable: 2.2.1
|
tapable: 2.2.1
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
webpack-sources: 2.3.1
|
webpack-sources: 2.3.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@@ -25792,7 +26322,7 @@ packages:
|
|||||||
chalk: 2.4.2
|
chalk: 2.4.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/webpack@5.91.0(webpack-cli@4.10.0):
|
/webpack@5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0):
|
||||||
resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
|
resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
|
||||||
engines: {node: '>=10.13.0'}
|
engines: {node: '>=10.13.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -25823,7 +26353,7 @@ packages:
|
|||||||
neo-async: 2.6.2
|
neo-async: 2.6.2
|
||||||
schema-utils: 3.3.0
|
schema-utils: 3.3.0
|
||||||
tapable: 2.2.1
|
tapable: 2.2.1
|
||||||
terser-webpack-plugin: 5.3.10(webpack@5.91.0)
|
terser-webpack-plugin: 5.3.10(esbuild@0.23.1)(webpack@5.91.0)
|
||||||
watchpack: 2.4.1
|
watchpack: 2.4.1
|
||||||
webpack-cli: 4.10.0(webpack@5.91.0)
|
webpack-cli: 4.10.0(webpack@5.91.0)
|
||||||
webpack-sources: 3.2.3
|
webpack-sources: 3.2.3
|
||||||
@@ -26202,7 +26732,7 @@ packages:
|
|||||||
fast-json-stable-stringify: 2.1.0
|
fast-json-stable-stringify: 2.1.0
|
||||||
pretty-bytes: 5.6.0
|
pretty-bytes: 5.6.0
|
||||||
upath: 1.2.0
|
upath: 1.2.0
|
||||||
webpack: 5.91.0(webpack-cli@4.10.0)
|
webpack: 5.91.0(esbuild@0.23.1)(webpack-cli@4.10.0)
|
||||||
webpack-sources: 1.4.3
|
webpack-sources: 1.4.3
|
||||||
workbox-build: 6.6.0
|
workbox-build: 6.6.0
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
|||||||
Reference in New Issue
Block a user