From e52750e768ab5a50b5984d25352f96af3ecf56f7 Mon Sep 17 00:00:00 2001 From: renxia Date: Thu, 22 Feb 2024 13:28:39 +0800 Subject: [PATCH] chore: add Dockerfile --- .github/workflows/docker-deploy.yml | 108 ++++ .github/workflows/test.yml | 9 +- .gitignore | 2 + Dockerfile | 38 ++ README.md | 9 +- package.json | 20 +- pnpm-lock.yaml | 829 +++++++++++++++------------- 7 files changed, 611 insertions(+), 404 deletions(-) create mode 100644 .github/workflows/docker-deploy.yml create mode 100644 Dockerfile diff --git a/.github/workflows/docker-deploy.yml b/.github/workflows/docker-deploy.yml new file mode 100644 index 00000000..2f26a8fa --- /dev/null +++ b/.github/workflows/docker-deploy.yml @@ -0,0 +1,108 @@ +name: deploy to docker hub + +on: + push: + tags: + - "v*.*.*" + # branches: + # - 'master' + +env: + # Use docker.io for Docker Hub if empty + REGISTRY: ${{ secrets.REGISTRY }} + # github.repository as / + IMAGE_NAME: ${{ github.repository }} + +jobs: + docker-deploy: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v4 + - uses: pnpm/action-setup@v3 + - + uses: actions/setup-node@v4 + with: + cache: "pnpm" + + - + name: Setup timezone + uses: szenius/set-timezone@v1.2 + with: + timezoneLinux: Asia/Shanghai + + - + name: Install dependencies + run: | + pnpm install + pnpm build + rm -rf tmp + mkdir tmp + cp package.json tmp + cd tmp + npm install --omit dev + pnpm dlx @lzwme/fed-lint-helper rm -f "node_modules/**/{license,LICENSE,README.md,readme.md,.*,*.d.ts,*.flow,*.map}" + + # - + # name: Set up QEMU + # uses: docker/setup-qemu-action@v3 + # - + # name: Set up Docker Buildx + # uses: docker/setup-buildx-action@v3 + + - + name: Extract Docker metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.IMAGE_NAME }} + tags: | + # set latest tag for default branch + type=raw,value=latest,enable={{is_default_branch}} + # tag event + type=ref,enable=true,priority=600,prefix=,suffix=,event=tag + - + name: Login to Docker Hub + uses: docker/login-action@v3 + with: + # registry: ghcr.io # 声明镜像源 + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + - + name: Build and push + id: docker_build + uses: docker/build-push-action@v5 + with: + context: . + # platforms: linux/amd64,linux/arm64 + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + + # - + # name: Login to Docker Hub + # run: | + # docker login --username=${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_PASSWORD }} ${{ env.REGISTRY }} + # - + # name: Build and push Docker Image + # run: | + # docker build -t ${{ env.REGISTRY }}/${{ steps.meta.outputs.tags }} -f Dockerfile . + # docker push ${{ env.REGISTRY }}/${{ steps.meta.outputs.tags }} + + # - + # name: Deploy Docker App + # uses: appleboy/ssh-action@master + # env: + # TZ: Asia/Shanghai + # with: + # host: ${{ secrets.HOST }} + # username: ${{ secrets.HOST_USERNAME }} + # key: ${{ secrets.HOST_SSHKEY }} + # port: ${{ secrets.PORT }} + # script: | + # wget https://raw.githubusercontent.com/${{ env.IMAGE_NAME }}/master/docker/docker-compose.yml + # ls + # cat docker-compose.yml + # docker-compose down -v + # docker-compose up -d diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7f5c40e8..42e4a9aa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,12 +19,9 @@ jobs: os: - ubuntu-latest - macos-latest - - windows-latest + # - windows-latest node-version: - - 16 - include: - node-version: 18 - os: ubuntu-latest + - 18 name: Node ${{ matrix.node-version }} on ${{ matrix.os }} steps: - name: Checkout @@ -40,7 +37,7 @@ jobs: - uses: pnpm/action-setup@v2 with: - version: 7 + version: 8 - name: Install dependencies run: pnpm install --ignore-scripts diff --git a/.gitignore b/.gitignore index 334b3346..1e98d438 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,5 @@ npm-debug.log* /service-account-staging.json /service-account.json *.tgz +/tmp +/cache diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..375f173e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,38 @@ +# FROM node:18-alpine as builder +# COPY package.json .npmrc /tmp/build/ +# RUN set -x \ +# && apk update \ +# && npm i -g pnpm \ +# && cd /tmp/build \ +# && npm install --omit dev \ +# && npx @lzwme/fed-lint-helper rm -f "node_modules/**/{license,LICENSE,README.md,readme.md,.*,*.d.ts,*.flow,*.map}" + +FROM node:18-alpine As producton +LABEL maintainer="renxia " + +WORKDIR /app + +COPY package.json .npmrc server.js ./ +COPY public public +COPY tmp/node_modules node_modules + +ENV TZ=Asia/Shanghai +# ENV DEBUG=0 +ENV NODE_ENV=production +ENV PORT=8080 +ENV NPM_REGISTRY_URL=https://registry.npmmirror.com +ENV ORIGIN=https://unpkg.com +ENV ENABLE_CLOUDFLARE=0 +ENV CLOUDFLARE_EMAIL='' +ENV CLOUDFLARE_KEY='' + +EXPOSE 8080/tcp + +# RUN npm i -g pnpm --registry $NPM_REGISTRY_URL +# RUN pnpm install --prod --registry $NPM_REGISTRY_URL + +RUN rm -rf /root/.cache \ + && rm -rf /root/.pnpm-store \ + && rm -rf /root/.local/share/pnpm/store/v3/files + +ENTRYPOINT [ "node", "server.js"] diff --git a/README.md b/README.md index ea9fe8de..d7a4786e 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ prepare: ```bash -git clone https://github.com/renxia/unpkg.git +git clone https://github.com/lzwme/unpkg.git cd unpkg pnpm i cp .env.sample .env.local # and edit the env.local config for local development @@ -48,6 +48,13 @@ npm i --omit dev pm2 -n unpkg start.js ``` +## With Docker + +```bash +docker pull lzwme/unpkg +docker run -d -p 8080:8080 -e NPM_REGISTRY_URL=https://registry.npmjs.org -e ORGIN=* lzwme/unpkg +``` + ## Configuration with `.env[.prod|.local]` Learn more from the file [.env.sample](./.env.sample). diff --git a/package.json b/package.json index ea216029..3d83abff 100644 --- a/package.json +++ b/package.json @@ -16,14 +16,6 @@ "pretty-bytes": "5.6.0" }, "dependencies": { - "@babel/core": "^7.20.12", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.20.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-default-from": "^7.18.6", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.10.4", "@emotion/react": "^11.11.3", "@reach/visually-hidden": "^0.18.0", "cheerio": "^1.0.0-rc.12", @@ -39,7 +31,7 @@ "mime": "^4.0.1", "morgan": "^1.10.0", "ndjson": "^2.0.0", - "pretty-bytes": "^6.1.1", + "pretty-bytes": "5.6.0", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -55,6 +47,14 @@ }, "devDependencies": { "@ampproject/rollup-plugin-closure-compiler": "^0.27.0", + "@babel/core": "^7.20.12", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.20.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-default-from": "^7.18.6", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/preset-env": "^7.20.2", "@babel/preset-react": "^7.18.6", "@typescript-eslint/eslint-plugin": "7.0.2", @@ -81,7 +81,7 @@ "@rollup/plugin-url": "^8.0.2", "supertest": "^6.3.4" }, - "packageManager": "pnpm@7.26.0", + "packageManager": "pnpm@8.0.0", "engines": { "node": ">=12" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 90f7c9e2..bc34e812 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,30 +8,6 @@ overrides: pretty-bytes: 5.6.0 dependencies: - '@babel/core': - specifier: ^7.20.12 - version: 7.20.12 - '@babel/plugin-proposal-class-properties': - specifier: ^7.18.6 - version: 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-nullish-coalescing-operator': - specifier: ^7.18.6 - version: 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-optional-chaining': - specifier: ^7.20.7 - version: 7.20.7(@babel/core@7.20.12) - '@babel/plugin-syntax-dynamic-import': - specifier: ^7.8.3 - version: 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-export-default-from': - specifier: ^7.18.6 - version: 7.18.6(@babel/core@7.20.12) - '@babel/plugin-syntax-export-namespace-from': - specifier: ^7.8.3 - version: 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-import-meta': - specifier: ^7.10.4 - version: 7.10.4(@babel/core@7.20.12) '@emotion/react': specifier: ^11.11.3 version: 11.11.3(react@18.2.0) @@ -121,6 +97,30 @@ devDependencies: '@ampproject/rollup-plugin-closure-compiler': specifier: ^0.27.0 version: 0.27.0(rollup@4.12.0) + '@babel/core': + specifier: ^7.20.12 + version: 7.20.12 + '@babel/plugin-proposal-class-properties': + specifier: ^7.18.6 + version: 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-nullish-coalescing-operator': + specifier: ^7.18.6 + version: 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-optional-chaining': + specifier: ^7.20.7 + version: 7.20.7(@babel/core@7.20.12) + '@babel/plugin-syntax-dynamic-import': + specifier: ^7.8.3 + version: 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-export-default-from': + specifier: ^7.18.6 + version: 7.18.6(@babel/core@7.20.12) + '@babel/plugin-syntax-export-namespace-from': + specifier: ^7.8.3 + version: 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-import-meta': + specifier: ^7.10.4 + version: 7.10.4(@babel/core@7.20.12) '@babel/preset-env': specifier: ^7.20.2 version: 7.20.2(@babel/core@7.20.12) @@ -205,7 +205,7 @@ packages: dev: true /@ampproject/remapping@0.2.0: - resolution: {integrity: sha1-BykKXA9erIpMM9OKoNFaNBbbQy4=, tarball: artifactory/api/npm/npm/@ampproject/remapping/-/remapping-0.2.0.tgz} + resolution: {integrity: sha1-BykKXA9erIpMM9OKoNFaNBbbQy4=} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/resolve-uri': 1.0.0 @@ -213,14 +213,15 @@ packages: dev: true /@ampproject/remapping@2.2.0: - resolution: {integrity: sha1-VsEzgkeA3jF0rtWraDTzAmeQFU0=, tarball: artifactory/api/npm/npm/@ampproject/remapping/-/remapping-2.2.0.tgz} + resolution: {integrity: sha1-VsEzgkeA3jF0rtWraDTzAmeQFU0=} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 '@jridgewell/trace-mapping': 0.3.17 + dev: true /@ampproject/rollup-plugin-closure-compiler@0.27.0(rollup@4.12.0): - resolution: {integrity: sha1-/ZjnJXlGJCzG8+r4rhjUpnqZ7UA=, tarball: artifactory/api/npm/npm/@ampproject/rollup-plugin-closure-compiler/-/rollup-plugin-closure-compiler-0.27.0.tgz} + resolution: {integrity: sha1-/ZjnJXlGJCzG8+r4rhjUpnqZ7UA=} engines: {node: '>=10'} peerDependencies: rollup: '>=1.27' @@ -236,7 +237,7 @@ packages: dev: true /@babel/code-frame@7.18.6: - resolution: {integrity: sha1-OyXTjIlgC6otzCGe36iKdOssQno=, tarball: artifactory/api/npm/npm/@babel/code-frame/-/code-frame-7.18.6.tgz} + resolution: {integrity: sha1-OyXTjIlgC6otzCGe36iKdOssQno=} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.18.6 @@ -250,8 +251,9 @@ packages: dev: true /@babel/compat-data@7.20.14: - resolution: {integrity: sha1-QQb8i3VfPj7goKfCfd5d4dKyuvg=, tarball: artifactory/api/npm/npm/@babel/compat-data/-/compat-data-7.20.14.tgz} + resolution: {integrity: sha1-QQb8i3VfPj7goKfCfd5d4dKyuvg=} engines: {node: '>=6.9.0'} + dev: true /@babel/compat-data@7.23.5: resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} @@ -259,7 +261,7 @@ packages: dev: true /@babel/core@7.20.12: - resolution: {integrity: sha1-eTDbV0Q8ZxStIWlT0TVtrA64SW0=, tarball: artifactory/api/npm/npm/@babel/core/-/core-7.20.12.tgz} + resolution: {integrity: sha1-eTDbV0Q8ZxStIWlT0TVtrA64SW0=} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 @@ -279,6 +281,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /@babel/core@7.23.9: resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==} @@ -304,7 +307,7 @@ packages: dev: true /@babel/eslint-parser@7.19.1(@babel/core@7.20.12)(eslint@8.56.0): - resolution: {integrity: sha1-T2j2sIJUieAKJLQbahrjVBTs0vQ=, tarball: artifactory/api/npm/npm/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz} + resolution: {integrity: sha1-T2j2sIJUieAKJLQbahrjVBTs0vQ=} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' @@ -318,12 +321,13 @@ packages: dev: true /@babel/generator@7.20.14: - resolution: {integrity: sha1-n6dyyfhqRsasmzIQOUAHErlvZM4=, tarball: artifactory/api/npm/npm/@babel/generator/-/generator-7.20.14.tgz} + resolution: {integrity: sha1-n6dyyfhqRsasmzIQOUAHErlvZM4=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 + dev: true /@babel/generator@7.23.6: resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} @@ -336,13 +340,14 @@ packages: dev: true /@babel/helper-annotate-as-pure@7.18.6: - resolution: {integrity: sha1-6qSfb4DVoz+aXdInbm1uRRvgprs=, tarball: artifactory/api/npm/npm/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz} + resolution: {integrity: sha1-6qSfb4DVoz+aXdInbm1uRRvgprs=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 + dev: true /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9: - resolution: {integrity: sha1-rNTt/XpWbR1R6pdd/zj9UpBpgbs=, tarball: artifactory/api/npm/npm/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz} + resolution: {integrity: sha1-rNTt/XpWbR1R6pdd/zj9UpBpgbs=} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 @@ -350,7 +355,7 @@ packages: dev: true /@babel/helper-compilation-targets@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-ps0z6TYp9etHOwIarAXfYsTNCbs=, tarball: artifactory/api/npm/npm/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz} + resolution: {integrity: sha1-ps0z6TYp9etHOwIarAXfYsTNCbs=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -361,6 +366,7 @@ packages: browserslist: 4.21.5 lru-cache: 5.1.1 semver: 6.3.0 + dev: true /@babel/helper-compilation-targets@7.23.6: resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} @@ -374,7 +380,7 @@ packages: dev: true /@babel/helper-create-class-features-plugin@7.20.12(@babel/core@7.20.12): - resolution: {integrity: sha1-Q0m5KOeb4F7S0WQ7ILmbuHxQOBk=, tarball: artifactory/api/npm/npm/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz} + resolution: {integrity: sha1-Q0m5KOeb4F7S0WQ7ILmbuHxQOBk=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -390,9 +396,10 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-create-regexp-features-plugin@7.20.5(@babel/core@7.20.12): - resolution: {integrity: sha1-XqebWZYqCewqzyCpY6AatNB2zMo=, tarball: artifactory/api/npm/npm/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz} + resolution: {integrity: sha1-XqebWZYqCewqzyCpY6AatNB2zMo=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -403,7 +410,7 @@ packages: dev: true /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.12): - resolution: {integrity: sha1-hhLlW+XVHwzR82tKWoOSTomIS3o=, tarball: artifactory/api/npm/npm/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz} + resolution: {integrity: sha1-hhLlW+XVHwzR82tKWoOSTomIS3o=} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: @@ -419,8 +426,9 @@ packages: dev: true /@babel/helper-environment-visitor@7.18.9: - resolution: {integrity: sha1-DAzumzXSyhkEeHVoZbs1KEIvUb4=, tarball: artifactory/api/npm/npm/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz} + resolution: {integrity: sha1-DAzumzXSyhkEeHVoZbs1KEIvUb4=} engines: {node: '>=6.9.0'} + dev: true /@babel/helper-environment-visitor@7.22.20: resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} @@ -428,18 +436,19 @@ packages: dev: true /@babel/helper-explode-assignable-expression@7.18.6: - resolution: {integrity: sha1-QfgijvCm8aA2uN/f7HzpT5prwJY=, tarball: artifactory/api/npm/npm/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz} + resolution: {integrity: sha1-QfgijvCm8aA2uN/f7HzpT5prwJY=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 dev: true /@babel/helper-function-name@7.19.0: - resolution: {integrity: sha1-lBV07VOQaC6HLlLT84zp0b70ZIw=, tarball: artifactory/api/npm/npm/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz} + resolution: {integrity: sha1-lBV07VOQaC6HLlLT84zp0b70ZIw=} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.20.7 '@babel/types': 7.20.7 + dev: true /@babel/helper-function-name@7.23.0: resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} @@ -450,10 +459,11 @@ packages: dev: true /@babel/helper-hoist-variables@7.18.6: - resolution: {integrity: sha1-1NLI+0uuqlxouZzIJFxWVU+SZng=, tarball: artifactory/api/npm/npm/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz} + resolution: {integrity: sha1-1NLI+0uuqlxouZzIJFxWVU+SZng=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 + dev: true /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} @@ -463,13 +473,14 @@ packages: dev: true /@babel/helper-member-expression-to-functions@7.20.7: - resolution: {integrity: sha1-pvJukZWCJ1qTw6pllHVtcbC7fwU=, tarball: artifactory/api/npm/npm/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz} + resolution: {integrity: sha1-pvJukZWCJ1qTw6pllHVtcbC7fwU=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 + dev: true /@babel/helper-module-imports@7.18.6: - resolution: {integrity: sha1-Hj69u9CKrRQ3tCjFAgTbE8Wjym4=, tarball: artifactory/api/npm/npm/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz} + resolution: {integrity: sha1-Hj69u9CKrRQ3tCjFAgTbE8Wjym4=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 @@ -482,7 +493,7 @@ packages: '@babel/types': 7.23.9 /@babel/helper-module-transforms@7.20.11: - resolution: {integrity: sha1-30x69xPFV5OMUOo60BF6eUSy8bA=, tarball: artifactory/api/npm/npm/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz} + resolution: {integrity: sha1-30x69xPFV5OMUOo60BF6eUSy8bA=} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 @@ -495,6 +506,7 @@ packages: '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9): resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} @@ -511,17 +523,19 @@ packages: dev: true /@babel/helper-optimise-call-expression@7.18.6: - resolution: {integrity: sha1-k2mqlD7n2kftqyy06Dis8J0pD/4=, tarball: artifactory/api/npm/npm/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz} + resolution: {integrity: sha1-k2mqlD7n2kftqyy06Dis8J0pD/4=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 + dev: true /@babel/helper-plugin-utils@7.20.2: - resolution: {integrity: sha1-0bkAB1KxjQh3z/haXDds5cMSFik=, tarball: artifactory/api/npm/npm/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz} + resolution: {integrity: sha1-0bkAB1KxjQh3z/haXDds5cMSFik=} engines: {node: '>=6.9.0'} + dev: true /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha1-mXRYoOM1cIDlTh157DR/iozShRk=, tarball: artifactory/api/npm/npm/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz} + resolution: {integrity: sha1-mXRYoOM1cIDlTh157DR/iozShRk=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -536,7 +550,7 @@ packages: dev: true /@babel/helper-replace-supers@7.20.7: - resolution: {integrity: sha1-JD7NJyTSBxUyssitLw+fCDvK4zE=, tarball: artifactory/api/npm/npm/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz} + resolution: {integrity: sha1-JD7NJyTSBxUyssitLw+fCDvK4zE=} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 @@ -547,12 +561,14 @@ packages: '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-simple-access@7.20.2: - resolution: {integrity: sha1-CrRSaH/gws+x4rngAV3gf8LWLdk=, tarball: artifactory/api/npm/npm/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz} + resolution: {integrity: sha1-CrRSaH/gws+x4rngAV3gf8LWLdk=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 + dev: true /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} @@ -562,16 +578,18 @@ packages: dev: true /@babel/helper-skip-transparent-expression-wrappers@7.20.0: - resolution: {integrity: sha1-++TFL2BRjKuBQNdxAfDmOoojBoQ=, tarball: artifactory/api/npm/npm/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz} + resolution: {integrity: sha1-++TFL2BRjKuBQNdxAfDmOoojBoQ=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 + dev: true /@babel/helper-split-export-declaration@7.18.6: - resolution: {integrity: sha1-c2eUm8dbIMbVpdSpe7ooJK6O8HU=, tarball: artifactory/api/npm/npm/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz} + resolution: {integrity: sha1-c2eUm8dbIMbVpdSpe7ooJK6O8HU=} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.20.7 + dev: true /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} @@ -581,15 +599,16 @@ packages: dev: true /@babel/helper-string-parser@7.19.4: - resolution: {integrity: sha1-ONOstlS0cBqbd/sGFalvd1w6nmM=, tarball: artifactory/api/npm/npm/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz} + resolution: {integrity: sha1-ONOstlS0cBqbd/sGFalvd1w6nmM=} engines: {node: '>=6.9.0'} + dev: true /@babel/helper-string-parser@7.23.4: resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} engines: {node: '>=6.9.0'} /@babel/helper-validator-identifier@7.19.1: - resolution: {integrity: sha1-fuqDTPMpAf/cGn7lVeL5wn4knKI=, tarball: artifactory/api/npm/npm/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz} + resolution: {integrity: sha1-fuqDTPMpAf/cGn7lVeL5wn4knKI=} engines: {node: '>=6.9.0'} /@babel/helper-validator-identifier@7.22.20: @@ -597,8 +616,9 @@ packages: engines: {node: '>=6.9.0'} /@babel/helper-validator-option@7.18.6: - resolution: {integrity: sha1-vw0rWlCbHzNgmeT/NuGmOqXbTbg=, tarball: artifactory/api/npm/npm/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz} + resolution: {integrity: sha1-vw0rWlCbHzNgmeT/NuGmOqXbTbg=} engines: {node: '>=6.9.0'} + dev: true /@babel/helper-validator-option@7.23.5: resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} @@ -606,7 +626,7 @@ packages: dev: true /@babel/helper-wrap-function@7.20.5: - resolution: {integrity: sha1-deLYTUmaCrOzHDO8/lnWuKRfYuM=, tarball: artifactory/api/npm/npm/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz} + resolution: {integrity: sha1-deLYTUmaCrOzHDO8/lnWuKRfYuM=} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.19.0 @@ -618,7 +638,7 @@ packages: dev: true /@babel/helpers@7.20.13: - resolution: {integrity: sha1-48tzH7cNxTNxNMrcJMu60xzIetI=, tarball: artifactory/api/npm/npm/@babel/helpers/-/helpers-7.20.13.tgz} + resolution: {integrity: sha1-48tzH7cNxTNxNMrcJMu60xzIetI=} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.20.7 @@ -626,6 +646,7 @@ packages: '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color + dev: true /@babel/helpers@7.23.9: resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==} @@ -639,7 +660,7 @@ packages: dev: true /@babel/highlight@7.18.6: - resolution: {integrity: sha1-gRWGAek+JWN5Wty/vfXWS+Py7N8=, tarball: artifactory/api/npm/npm/@babel/highlight/-/highlight-7.18.6.tgz} + resolution: {integrity: sha1-gRWGAek+JWN5Wty/vfXWS+Py7N8=} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.19.1 @@ -656,11 +677,12 @@ packages: dev: true /@babel/parser@7.20.15: - resolution: {integrity: sha1-7snzbY6vCUi7iMh6RnhLXun9DIk=, tarball: artifactory/api/npm/npm/@babel/parser/-/parser-7.20.15.tgz} + resolution: {integrity: sha1-7snzbY6vCUi7iMh6RnhLXun9DIk=} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.20.7 + dev: true /@babel/parser@7.23.9: resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==} @@ -671,7 +693,7 @@ packages: dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-2luPmlgKzfvlNJTbpF6jifsJpNI=, tarball: artifactory/api/npm/npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz} + resolution: {integrity: sha1-2luPmlgKzfvlNJTbpF6jifsJpNI=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -681,7 +703,7 @@ packages: dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-2chViSWFOaIqkBAzhTEBphmNTvE=, tarball: artifactory/api/npm/npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz} + resolution: {integrity: sha1-2chViSWFOaIqkBAzhTEBphmNTvE=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 @@ -693,7 +715,7 @@ packages: dev: true /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-v7cnbS1XPLZ7o3mYSiM04mK6UyY=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz} + resolution: {integrity: sha1-v7cnbS1XPLZ7o3mYSiM04mK6UyY=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -708,7 +730,7 @@ packages: dev: true /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-sRD1l0GJX37CGm//aW7EYmXERqM=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz} + resolution: {integrity: sha1-sRD1l0GJX37CGm//aW7EYmXERqM=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -718,9 +740,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-proposal-class-static-block@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-klkukCmxOxW+D3zmp67cKHnKRac=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz} + resolution: {integrity: sha1-klkukCmxOxW+D3zmp67cKHnKRac=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 @@ -734,7 +757,7 @@ packages: dev: true /@babel/plugin-proposal-decorators@7.20.13(@babel/core@7.20.12): - resolution: {integrity: sha1-tr6jsY6IRDaI+n7SzAbSxg2p9Kc=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.13.tgz} + resolution: {integrity: sha1-tr6jsY6IRDaI+n7SzAbSxg2p9Kc=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -750,7 +773,7 @@ packages: dev: true /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-crz41Ah5n1R9dZKYw8J8fn+qTZQ=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz} + resolution: {integrity: sha1-crz41Ah5n1R9dZKYw8J8fn+qTZQ=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -761,7 +784,7 @@ packages: dev: true /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha1-X3MTqzSM2xnVkBRfkkdUDpR2EgM=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz} + resolution: {integrity: sha1-X3MTqzSM2xnVkBRfkkdUDpR2EgM=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -772,7 +795,7 @@ packages: dev: true /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-foeIwYEcOTr/digX59vx69DAXws=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz} + resolution: {integrity: sha1-foeIwYEcOTr/digX59vx69DAXws=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -783,7 +806,7 @@ packages: dev: true /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-37yqj3tNN7Uei/tG2Upa6iu4nYM=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz} + resolution: {integrity: sha1-37yqj3tNN7Uei/tG2Upa6iu4nYM=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -794,7 +817,7 @@ packages: dev: true /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-/dlAqZp0Dld9bHU6tvu0P9uUZ+E=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz} + resolution: {integrity: sha1-/dlAqZp0Dld9bHU6tvu0P9uUZ+E=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -802,9 +825,10 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) + dev: true /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-iZsU+6/ofwU9LF/wWzYCnGLhPHU=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz} + resolution: {integrity: sha1-iZsU+6/ofwU9LF/wWzYCnGLhPHU=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -815,7 +839,7 @@ packages: dev: true /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-qmYpQO9CV3nHVTSlxB6dk27cOQo=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz} + resolution: {integrity: sha1-qmYpQO9CV3nHVTSlxB6dk27cOQo=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -829,7 +853,7 @@ packages: dev: true /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-+UANDmo+qTup73CwnnLdbaY4oss=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz} + resolution: {integrity: sha1-+UANDmo+qTup73CwnnLdbaY4oss=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -840,7 +864,7 @@ packages: dev: true /@babel/plugin-proposal-optional-chaining@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-SfKzclGasxcozBQRW7CZixW/2lU=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz} + resolution: {integrity: sha1-SfKzclGasxcozBQRW7CZixW/2lU=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -849,9 +873,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) + dev: true /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-UgnefSE0V1SKmENvoogvUvS+a+o=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz} + resolution: {integrity: sha1-UgnefSE0V1SKmENvoogvUvS+a+o=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -864,7 +889,7 @@ packages: dev: true /@babel/plugin-proposal-private-property-in-object@7.20.5(@babel/core@7.20.12): - resolution: {integrity: sha1-MJx2aPImPxxxGqOZtammKR7vYTU=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz} + resolution: {integrity: sha1-MJx2aPImPxxxGqOZtammKR7vYTU=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -879,7 +904,7 @@ packages: dev: true /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-r2E9LNXmQ2Q7Zc3tZCB7Fchct44=, tarball: artifactory/api/npm/npm/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz} + resolution: {integrity: sha1-r2E9LNXmQ2Q7Zc3tZCB7Fchct44=} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -890,7 +915,7 @@ packages: dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.12): - resolution: {integrity: sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz} + resolution: {integrity: sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -908,7 +933,7 @@ packages: dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.12): - resolution: {integrity: sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz} + resolution: {integrity: sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -917,7 +942,7 @@ packages: dev: true /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.12): - resolution: {integrity: sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz} + resolution: {integrity: sha1-GV34mxRrS3izv4l/16JXyEZZ1AY=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -927,7 +952,7 @@ packages: dev: true /@babel/plugin-syntax-decorators@7.19.0(@babel/core@7.20.12): - resolution: {integrity: sha1-XxPR2PzpaVG+oBoQQkRjyaWzpZk=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz} + resolution: {integrity: sha1-XxPR2PzpaVG+oBoQQkRjyaWzpZk=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -937,33 +962,35 @@ packages: dev: true /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz} + resolution: {integrity: sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-syntax-export-default-from@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-jfB2cRpIGMTOTyPmHWIrC6L/hLw=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.18.6.tgz} + resolution: {integrity: sha1-jfB2cRpIGMTOTyPmHWIrC6L/hLw=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - dev: false + dev: true /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha1-AolkqbqA28CUyRXEh618TnpmRlo=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz} + resolution: {integrity: sha1-AolkqbqA28CUyRXEh618TnpmRlo=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-d02CUlbyN50GE5vgxyPE3URPPKE=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz} + resolution: {integrity: sha1-d02CUlbyN50GE5vgxyPE3URPPKE=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -973,7 +1000,7 @@ packages: dev: true /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.20.12): - resolution: {integrity: sha1-u1Dg1L6glXI1OQZBIJOU6HvbnMQ=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz} + resolution: {integrity: sha1-u1Dg1L6glXI1OQZBIJOU6HvbnMQ=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -983,15 +1010,16 @@ packages: dev: true /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.12): - resolution: {integrity: sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz} + resolution: {integrity: sha1-7mATSMNw+jNNIge+FYd3SWUh/VE=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz} + resolution: {integrity: sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1000,7 +1028,7 @@ packages: dev: true /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-qP7vY7AQFQq9l/FknsKW6EmUPKA=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz} + resolution: {integrity: sha1-qP7vY7AQFQq9l/FknsKW6EmUPKA=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1010,7 +1038,7 @@ packages: dev: true /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.12): - resolution: {integrity: sha1-ypHvRjA1MESLkGZSusLp/plB9pk=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz} + resolution: {integrity: sha1-ypHvRjA1MESLkGZSusLp/plB9pk=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1019,15 +1047,16 @@ packages: dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz} + resolution: {integrity: sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.12): - resolution: {integrity: sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz} + resolution: {integrity: sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1036,7 +1065,7 @@ packages: dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz} + resolution: {integrity: sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1045,7 +1074,7 @@ packages: dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz} + resolution: {integrity: sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1054,15 +1083,16 @@ packages: dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.12): - resolution: {integrity: sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz} + resolution: {integrity: sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.12): - resolution: {integrity: sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz} + resolution: {integrity: sha1-DcZnHsDqIrbpShEU+FeXDNOd4a0=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1072,7 +1102,7 @@ packages: dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.12): - resolution: {integrity: sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz} + resolution: {integrity: sha1-wc/a3DWmRiQAAfBhOCR7dBw02Uw=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1082,7 +1112,7 @@ packages: dev: true /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.20.12): - resolution: {integrity: sha1-TpoM/HachWibd6LmQtJOn2l/yMc=, tarball: artifactory/api/npm/npm/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz} + resolution: {integrity: sha1-TpoM/HachWibd6LmQtJOn2l/yMc=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1092,7 +1122,7 @@ packages: dev: true /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-vqMysOiy2rPa/lWhY9gidTGrBVE=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz} + resolution: {integrity: sha1-vqMysOiy2rPa/lWhY9gidTGrBVE=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1102,7 +1132,7 @@ packages: dev: true /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-3+4YYjyMsx3reWqjyoTdqc6pQ1Q=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz} + resolution: {integrity: sha1-3+4YYjyMsx3reWqjyoTdqc6pQ1Q=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1116,7 +1146,7 @@ packages: dev: true /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-kYe/S6MCY1udcNmGrXDwOHJiFqg=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz} + resolution: {integrity: sha1-kYe/S6MCY1udcNmGrXDwOHJiFqg=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1126,7 +1156,7 @@ packages: dev: true /@babel/plugin-transform-block-scoping@7.20.15(@babel/core@7.20.12): - resolution: {integrity: sha1-Phsqqcu+HrjWRMgjFBqcXCoiOS0=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz} + resolution: {integrity: sha1-Phsqqcu+HrjWRMgjFBqcXCoiOS0=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1136,7 +1166,7 @@ packages: dev: true /@babel/plugin-transform-classes@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-9DghbwlPa7Mdwmbr+rj/Ba7K0HM=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz} + resolution: {integrity: sha1-9DghbwlPa7Mdwmbr+rj/Ba7K0HM=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1156,7 +1186,7 @@ packages: dev: true /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-cEzC/RVdHJllUduCdtVbnUbk0Ko=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz} + resolution: {integrity: sha1-cEzC/RVdHJllUduCdtVbnUbk0Ko=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1167,7 +1197,7 @@ packages: dev: true /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-i9pXj3FiDH3nyTr1kBVLozFBVFQ=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz} + resolution: {integrity: sha1-i9pXj3FiDH3nyTr1kBVLozFBVFQ=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1177,7 +1207,7 @@ packages: dev: true /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-soaz56rmx7hh5FvtCi+v1rGk/vg=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz} + resolution: {integrity: sha1-soaz56rmx7hh5FvtCi+v1rGk/vg=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1188,7 +1218,7 @@ packages: dev: true /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha1-aH8V7jza1thRkesqNyxFKOqgrg4=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz} + resolution: {integrity: sha1-aH8V7jza1thRkesqNyxFKOqgrg4=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1198,7 +1228,7 @@ packages: dev: true /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-QhxwX0UhiIxl6R/dGvlRv+/U2s0=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz} + resolution: {integrity: sha1-QhxwX0UhiIxl6R/dGvlRv+/U2s0=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1209,7 +1239,7 @@ packages: dev: true /@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.20.12): - resolution: {integrity: sha1-6ehgZjModIghYChxljjLuy8t3o8=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz} + resolution: {integrity: sha1-6ehgZjModIghYChxljjLuy8t3o8=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1220,7 +1250,7 @@ packages: dev: true /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.20.12): - resolution: {integrity: sha1-bvilCyROtqC9utDHxhh35OMAl8E=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz} + resolution: {integrity: sha1-bvilCyROtqC9utDHxhh35OMAl8E=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1230,7 +1260,7 @@ packages: dev: true /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha1-zDVPgjTmKWiUbGGkbWNlRA/HZOA=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz} + resolution: {integrity: sha1-zDVPgjTmKWiUbGGkbWNlRA/HZOA=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1242,7 +1272,7 @@ packages: dev: true /@babel/plugin-transform-literals@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha1-cnlv2++A5W+6PGppnVTw3lV0RLw=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz} + resolution: {integrity: sha1-cnlv2++A5W+6PGppnVTw3lV0RLw=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1252,7 +1282,7 @@ packages: dev: true /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-rJ/cGhGGIKxJt+el0twXehv+6I4=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz} + resolution: {integrity: sha1-rJ/cGhGGIKxJt+el0twXehv+6I4=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1262,7 +1292,7 @@ packages: dev: true /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.20.12): - resolution: {integrity: sha1-PazMqOTMMJ8Dw6DEtB3Esm9VIUo=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz} + resolution: {integrity: sha1-PazMqOTMMJ8Dw6DEtB3Esm9VIUo=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1275,7 +1305,7 @@ packages: dev: true /@babel/plugin-transform-modules-commonjs@7.20.11(@babel/core@7.20.12): - resolution: {integrity: sha1-jLIwEIab92af1LMJhZi2sr5txgc=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz} + resolution: {integrity: sha1-jLIwEIab92af1LMJhZi2sr5txgc=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1289,7 +1319,7 @@ packages: dev: true /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.20.12): - resolution: {integrity: sha1-Rn7Gu6a2pQY07qYcnCMmVNikaW4=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz} + resolution: {integrity: sha1-Rn7Gu6a2pQY07qYcnCMmVNikaW4=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1304,7 +1334,7 @@ packages: dev: true /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-gdODLWA0t1tU5ighuljyjtCqtLk=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz} + resolution: {integrity: sha1-gdODLWA0t1tU5ighuljyjtCqtLk=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1317,7 +1347,7 @@ packages: dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.20.12): - resolution: {integrity: sha1-YmKY3WLqUdRSw75YsoXSMZW6aag=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz} + resolution: {integrity: sha1-YmKY3WLqUdRSw75YsoXSMZW6aag=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -1328,7 +1358,7 @@ packages: dev: true /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-0Sjzdq4gBHfzfE3fzHIqihsyRqg=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz} + resolution: {integrity: sha1-0Sjzdq4gBHfzfE3fzHIqihsyRqg=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1338,7 +1368,7 @@ packages: dev: true /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-+zxszdFZObb/eTmUS1GXHdw1kSw=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz} + resolution: {integrity: sha1-+zxszdFZObb/eTmUS1GXHdw1kSw=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1351,7 +1381,7 @@ packages: dev: true /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-DuNJ6dG8lueOOzenr0I6QHinCD8=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz} + resolution: {integrity: sha1-DuNJ6dG8lueOOzenr0I6QHinCD8=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1361,7 +1391,7 @@ packages: dev: true /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-4iSYkDpINEjpTgMum7ucXMv8k6M=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz} + resolution: {integrity: sha1-4iSYkDpINEjpTgMum7ucXMv8k6M=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1371,7 +1401,7 @@ packages: dev: true /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-ixEl+RnvNuvf/wYdZk4mbGZrlBU=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz} + resolution: {integrity: sha1-ixEl+RnvNuvf/wYdZk4mbGZrlBU=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1381,7 +1411,7 @@ packages: dev: true /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-2+XJcoEeScdAW2MOTQ0uE4DA3cU=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz} + resolution: {integrity: sha1-2+XJcoEeScdAW2MOTQ0uE4DA3cU=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1391,7 +1421,7 @@ packages: dev: true /@babel/plugin-transform-react-jsx@7.20.13(@babel/core@7.20.12): - resolution: {integrity: sha1-+VDwsMNjd1A9KacS8WKHzt+IbLs=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz} + resolution: {integrity: sha1-+VDwsMNjd1A9KacS8WKHzt+IbLs=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1405,7 +1435,7 @@ packages: dev: true /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-VhryZ/GfPl1ZKR+ZUP17lmPQ2EQ=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz} + resolution: {integrity: sha1-VhryZ/GfPl1ZKR+ZUP17lmPQ2EQ=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1416,7 +1446,7 @@ packages: dev: true /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.20.12): - resolution: {integrity: sha1-V82liMf/t/T4SDzIO9zqAqkH8E0=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz} + resolution: {integrity: sha1-V82liMf/t/T4SDzIO9zqAqkH8E0=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1427,7 +1457,7 @@ packages: dev: true /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-savY6/jtql9/5ru40hM9I7am92o=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz} + resolution: {integrity: sha1-savY6/jtql9/5ru40hM9I7am92o=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1437,7 +1467,7 @@ packages: dev: true /@babel/plugin-transform-runtime@7.19.6(@babel/core@7.20.12): - resolution: {integrity: sha1-nSqdv04SZE1vRuXnW/vwK11ukZQ=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz} + resolution: {integrity: sha1-nSqdv04SZE1vRuXnW/vwK11ukZQ=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1454,7 +1484,7 @@ packages: dev: true /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-bW33mD1nsZUom+JJCePxKo9mTck=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz} + resolution: {integrity: sha1-bW33mD1nsZUom+JJCePxKo9mTck=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1464,7 +1494,7 @@ packages: dev: true /@babel/plugin-transform-spread@7.20.7(@babel/core@7.20.12): - resolution: {integrity: sha1-wtg+C5nTv4PgexGZXuJL98oJQB4=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz} + resolution: {integrity: sha1-wtg+C5nTv4PgexGZXuJL98oJQB4=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1475,7 +1505,7 @@ packages: dev: true /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-xnBusrFSQCjjF3IDOVg60PRErcw=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz} + resolution: {integrity: sha1-xnBusrFSQCjjF3IDOVg60PRErcw=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1485,7 +1515,7 @@ packages: dev: true /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha1-BOxvEKzaqBhGaJ1j+uEX3ZwkOl4=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz} + resolution: {integrity: sha1-BOxvEKzaqBhGaJ1j+uEX3ZwkOl4=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1495,7 +1525,7 @@ packages: dev: true /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.20.12): - resolution: {integrity: sha1-yM6mgmPkWt3NavyQkUKfgJJXYsA=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz} + resolution: {integrity: sha1-yM6mgmPkWt3NavyQkUKfgJJXYsA=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1505,7 +1535,7 @@ packages: dev: true /@babel/plugin-transform-typescript@7.20.13(@babel/core@7.20.12): - resolution: {integrity: sha1-41gbNWuGlPb/RQIR/md06v+NJas=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.13.tgz} + resolution: {integrity: sha1-41gbNWuGlPb/RQIR/md06v+NJas=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1519,7 +1549,7 @@ packages: dev: true /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.20.12): - resolution: {integrity: sha1-Hs+w7ag9CbvLd8CZcMLdVYMqokY=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz} + resolution: {integrity: sha1-Hs+w7ag9CbvLd8CZcMLdVYMqokY=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1529,7 +1559,7 @@ packages: dev: true /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-GUMXIl2MIBu64QM2T/6eLOo2zco=, tarball: artifactory/api/npm/npm/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz} + resolution: {integrity: sha1-GUMXIl2MIBu64QM2T/6eLOo2zco=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1540,7 +1570,7 @@ packages: dev: true /@babel/preset-env@7.20.2(@babel/core@7.20.12): - resolution: {integrity: sha1-mxZCqke7n0Oob5YwAReA2rf4ZQY=, tarball: artifactory/api/npm/npm/@babel/preset-env/-/preset-env-7.20.2.tgz} + resolution: {integrity: sha1-mxZCqke7n0Oob5YwAReA2rf4ZQY=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1626,7 +1656,7 @@ packages: dev: true /@babel/preset-modules@0.1.5(@babel/core@7.20.12): - resolution: {integrity: sha1-75Odbn8miCfhhBY43G/5VRXhFdk=, tarball: artifactory/api/npm/npm/@babel/preset-modules/-/preset-modules-0.1.5.tgz} + resolution: {integrity: sha1-75Odbn8miCfhhBY43G/5VRXhFdk=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1639,7 +1669,7 @@ packages: dev: true /@babel/preset-react@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-l5921idwSNwZCUwhe1B/OtUX3S0=, tarball: artifactory/api/npm/npm/@babel/preset-react/-/preset-react-7.18.6.tgz} + resolution: {integrity: sha1-l5921idwSNwZCUwhe1B/OtUX3S0=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1654,7 +1684,7 @@ packages: dev: true /@babel/preset-typescript@7.18.6(@babel/core@7.20.12): - resolution: {integrity: sha1-zmS+PmPt3EQkDGNY2u+sF7MYY5k=, tarball: artifactory/api/npm/npm/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz} + resolution: {integrity: sha1-zmS+PmPt3EQkDGNY2u+sF7MYY5k=} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1668,7 +1698,7 @@ packages: dev: true /@babel/runtime@7.20.13: - resolution: {integrity: sha1-cFWrinz/K49gWL9q5F/4StKt7Us=, tarball: artifactory/api/npm/npm/@babel/runtime/-/runtime-7.20.13.tgz} + resolution: {integrity: sha1-cFWrinz/K49gWL9q5F/4StKt7Us=} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 @@ -1681,12 +1711,13 @@ packages: regenerator-runtime: 0.14.1 /@babel/template@7.20.7: - resolution: {integrity: sha1-oVCQwoOag7AqqZbAtJlABYQf1ag=, tarball: artifactory/api/npm/npm/@babel/template/-/template-7.20.7.tgz} + resolution: {integrity: sha1-oVCQwoOag7AqqZbAtJlABYQf1ag=} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 '@babel/parser': 7.20.15 '@babel/types': 7.20.7 + dev: true /@babel/template@7.23.9: resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==} @@ -1698,7 +1729,7 @@ packages: dev: true /@babel/traverse@7.20.13: - resolution: {integrity: sha1-gXwboT0RrMyolHi9VIGy0WjQdHM=, tarball: artifactory/api/npm/npm/@babel/traverse/-/traverse-7.20.13.tgz} + resolution: {integrity: sha1-gXwboT0RrMyolHi9VIGy0WjQdHM=} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 @@ -1713,6 +1744,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/traverse@7.23.9: resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==} @@ -1733,12 +1765,13 @@ packages: dev: true /@babel/types@7.20.7: - resolution: {integrity: sha1-VOx14lIxhCP8B/tkTcalimTAm38=, tarball: artifactory/api/npm/npm/@babel/types/-/types-7.20.7.tgz} + resolution: {integrity: sha1-VOx14lIxhCP8B/tkTcalimTAm38=} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 + dev: true /@babel/types@7.23.9: resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==} @@ -2128,45 +2161,51 @@ packages: dev: true /@jridgewell/gen-mapping@0.1.1: - resolution: {integrity: sha1-5dLkUDBqlJHjvXfjI+ONev8xWZY=, tarball: artifactory/api/npm/npm/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz} + resolution: {integrity: sha1-5dLkUDBqlJHjvXfjI+ONev8xWZY=} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 + dev: true /@jridgewell/gen-mapping@0.3.2: - resolution: {integrity: sha1-wa7cYehT8rufXf5tRELTtWWyU7k=, tarball: artifactory/api/npm/npm/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz} + resolution: {integrity: sha1-wa7cYehT8rufXf5tRELTtWWyU7k=} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 '@jridgewell/trace-mapping': 0.3.17 + dev: true /@jridgewell/resolve-uri@1.0.0: - resolution: {integrity: sha1-P99XmPC0npAVWJb2KR3xhurAbIM=, tarball: artifactory/api/npm/npm/@jridgewell/resolve-uri/-/resolve-uri-1.0.0.tgz} + resolution: {integrity: sha1-P99XmPC0npAVWJb2KR3xhurAbIM=} engines: {node: '>=6.0.0'} dev: true /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha1-IgOxGMFXchrd/mnUe3BGVGMGbXg=, tarball: artifactory/api/npm/npm/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz} + resolution: {integrity: sha1-IgOxGMFXchrd/mnUe3BGVGMGbXg=} engines: {node: '>=6.0.0'} + dev: true /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha1-fGz5mNbSC5FMClWpGuko/yWWXnI=, tarball: artifactory/api/npm/npm/@jridgewell/set-array/-/set-array-1.1.2.tgz} + resolution: {integrity: sha1-fGz5mNbSC5FMClWpGuko/yWWXnI=} engines: {node: '>=6.0.0'} + dev: true /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha1-rdTJjTQUcqKJGQtCTvvbCWmRuyQ=, tarball: artifactory/api/npm/npm/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz} + resolution: {integrity: sha1-rdTJjTQUcqKJGQtCTvvbCWmRuyQ=} + dev: true /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} dev: true /@jridgewell/trace-mapping@0.3.17: - resolution: {integrity: sha1-eTBBJ3r5BzsJUaf+Dw2MTJjDaYU=, tarball: artifactory/api/npm/npm/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz} + resolution: {integrity: sha1-eTBBJ3r5BzsJUaf+Dw2MTJjDaYU=} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 + dev: true /@jridgewell/trace-mapping@0.3.22: resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} @@ -2176,7 +2215,7 @@ packages: dev: true /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1: - resolution: {integrity: sha1-2/czqWXKR7GXMXfcC7bIie3PsSk=, tarball: artifactory/api/npm/npm/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz} + resolution: {integrity: sha1-2/czqWXKR7GXMXfcC7bIie3PsSk=} dependencies: eslint-scope: 5.1.1 dev: true @@ -2203,7 +2242,7 @@ packages: dev: true /@reach/polymorphic@0.18.0(react@18.2.0): - resolution: {integrity: sha1-L+QgB6d04GzbyOE+DUby3DDy8e0=, tarball: artifactory/api/npm/npm/@reach/polymorphic/-/polymorphic-0.18.0.tgz} + resolution: {integrity: sha1-L+QgB6d04GzbyOE+DUby3DDy8e0=} peerDependencies: react: ^16.8.0 || 17.x dependencies: @@ -2211,7 +2250,7 @@ packages: dev: false /@reach/visually-hidden@0.18.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha1-F5I8CKzFlGYkwoNrKwnTWbOqjCc=, tarball: artifactory/api/npm/npm/@reach/visually-hidden/-/visually-hidden-0.18.0.tgz} + resolution: {integrity: sha1-F5I8CKzFlGYkwoNrKwnTWbOqjCc=} peerDependencies: react: ^16.8.0 || 17.x || 18.x react-dom: ^16.8.0 || 17.x || 18.x @@ -2443,7 +2482,7 @@ packages: optional: true /@rushstack/eslint-patch@1.2.0: - resolution: {integrity: sha1-i+NqH2bzJlOJ6QtfnJliFGdY9yg=, tarball: artifactory/api/npm/npm/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz} + resolution: {integrity: sha1-i+NqH2bzJlOJ6QtfnJliFGdY9yg=} dev: true /@sinclair/typebox@0.27.8: @@ -2530,11 +2569,11 @@ packages: dev: true /@types/node@12.0.2: - resolution: {integrity: sha1-NFKiTt+f6hOLSPrUoKAopoPaHkA=, tarball: artifactory/api/npm/npm/@types/node/-/node-12.0.2.tgz} + resolution: {integrity: sha1-NFKiTt+f6hOLSPrUoKAopoPaHkA=} dev: true /@types/parse-json@4.0.0: - resolution: {integrity: sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=, tarball: artifactory/api/npm/npm/@types/parse-json/-/parse-json-4.0.0.tgz} + resolution: {integrity: sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=} /@types/resolve@1.20.2: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -2620,7 +2659,7 @@ packages: dev: true /@typescript-eslint/experimental-utils@5.51.0(eslint@8.56.0)(typescript@5.3.3): - resolution: {integrity: sha1-k2EkhDqSIYY/AnoIBjtzdXiDi+o=, tarball: artifactory/api/npm/npm/@typescript-eslint/experimental-utils/-/experimental-utils-5.51.0.tgz} + resolution: {integrity: sha1-k2EkhDqSIYY/AnoIBjtzdXiDi+o=} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2846,7 +2885,7 @@ packages: dev: true /accepts@1.3.8: - resolution: {integrity: sha1-C/C+EltnAUrcsLCSHmLbe//hay4=, tarball: artifactory/api/npm/npm/accepts/-/accepts-1.3.8.tgz} + resolution: {integrity: sha1-C/C+EltnAUrcsLCSHmLbe//hay4=} engines: {node: '>= 0.6'} dependencies: mime-types: 2.1.35 @@ -2862,12 +2901,12 @@ packages: dev: true /acorn-walk@7.1.1: - resolution: {integrity: sha1-NF8N/61cc15zc9L+yaECPmpEuD4=, tarball: artifactory/api/npm/npm/acorn-walk/-/acorn-walk-7.1.1.tgz} + resolution: {integrity: sha1-NF8N/61cc15zc9L+yaECPmpEuD4=} engines: {node: '>=0.4.0'} dev: true /acorn@7.3.1: - resolution: {integrity: sha1-hQEHVNtTw/uvO56j4IOqXF0Uf/0=, tarball: artifactory/api/npm/npm/acorn/-/acorn-7.3.1.tgz} + resolution: {integrity: sha1-hQEHVNtTw/uvO56j4IOqXF0Uf/0=} engines: {node: '>=0.4.0'} hasBin: true dev: true @@ -2895,7 +2934,7 @@ packages: dev: true /ansi-regex@5.0.1: - resolution: {integrity: sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=, tarball: artifactory/api/npm/npm/ansi-regex/-/ansi-regex-5.0.1.tgz} + resolution: {integrity: sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=} engines: {node: '>=8'} dev: true @@ -2906,7 +2945,7 @@ packages: color-convert: 1.9.3 /ansi-styles@4.3.0: - resolution: {integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=, tarball: artifactory/api/npm/npm/ansi-styles/-/ansi-styles-4.3.0.tgz} + resolution: {integrity: sha1-7dgDYornHATIWuegkG7a00tkiTc=} engines: {node: '>=8'} dependencies: color-convert: 2.0.1 @@ -2950,7 +2989,7 @@ packages: dev: true /array-flatten@1.1.1: - resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=, tarball: artifactory/api/npm/npm/array-flatten/-/array-flatten-1.1.1.tgz} + resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=} dev: false /array-includes@3.1.6: @@ -3112,7 +3151,7 @@ packages: dev: false /babel-core@7.0.0-bridge.0(@babel/core@7.20.12): - resolution: {integrity: sha1-laSS3dkPm06aSh2hTrM1uHtjTs4=, tarball: artifactory/api/npm/npm/babel-core/-/babel-core-7.0.0-bridge.0.tgz} + resolution: {integrity: sha1-laSS3dkPm06aSh2hTrM1uHtjTs4=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3161,7 +3200,7 @@ packages: dev: true /babel-plugin-macros@3.1.0: - resolution: {integrity: sha1-nvbcdN65NLTbNE3Jc+6FHRSMUME=, tarball: artifactory/api/npm/npm/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz} + resolution: {integrity: sha1-nvbcdN65NLTbNE3Jc+6FHRSMUME=} engines: {node: '>=10', npm: '>=6'} dependencies: '@babel/runtime': 7.23.9 @@ -3169,7 +3208,7 @@ packages: resolve: 1.22.8 /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.20.12): - resolution: {integrity: sha1-XRvTg20KGeG4S78tlkDMtvlRwSI=, tarball: artifactory/api/npm/npm/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz} + resolution: {integrity: sha1-XRvTg20KGeG4S78tlkDMtvlRwSI=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3182,7 +3221,7 @@ packages: dev: true /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.12): - resolution: {integrity: sha1-Vq2II3E36t5IWnG1L3Lb7VfGIwo=, tarball: artifactory/api/npm/npm/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz} + resolution: {integrity: sha1-Vq2II3E36t5IWnG1L3Lb7VfGIwo=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3194,7 +3233,7 @@ packages: dev: true /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.12): - resolution: {integrity: sha1-OQ+Rw42QRzWS7UM1HoAanT4P10c=, tarball: artifactory/api/npm/npm/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz} + resolution: {integrity: sha1-OQ+Rw42QRzWS7UM1HoAanT4P10c=} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3205,7 +3244,7 @@ packages: dev: true /babel-plugin-transform-react-remove-prop-types@0.4.24: - resolution: {integrity: sha1-8u2vm0xqX75cHWeL+1MQeMFVXzo=, tarball: artifactory/api/npm/npm/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz} + resolution: {integrity: sha1-8u2vm0xqX75cHWeL+1MQeMFVXzo=} dev: true /babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.12): @@ -3240,7 +3279,7 @@ packages: dev: true /babel-preset-react-app@10.0.1: - resolution: {integrity: sha1-7WAFogok8siFIYCfqa6pmQN1FYQ=, tarball: artifactory/api/npm/npm/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz} + resolution: {integrity: sha1-7WAFogok8siFIYCfqa6pmQN1FYQ=} dependencies: '@babel/core': 7.20.12 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12) @@ -3264,7 +3303,7 @@ packages: dev: true /balanced-match@1.0.0: - resolution: {integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=, tarball: artifactory/api/npm/npm/balanced-match/-/balanced-match-1.0.0.tgz} + resolution: {integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=} dev: true /bare-events@2.2.0: @@ -3274,7 +3313,7 @@ packages: optional: true /basic-auth@2.0.1: - resolution: {integrity: sha1-uZgnm/R844NEtPPPkW1Gebv1Hjo=, tarball: artifactory/api/npm/npm/basic-auth/-/basic-auth-2.0.1.tgz} + resolution: {integrity: sha1-uZgnm/R844NEtPPPkW1Gebv1Hjo=} engines: {node: '>= 0.8'} dependencies: safe-buffer: 5.1.2 @@ -3286,7 +3325,7 @@ packages: dev: true /body-parser@1.20.1: - resolution: {integrity: sha1-sYEqiRLBlc03Gj7l5m+qIzilxmg=, tarball: artifactory/api/npm/npm/body-parser/-/body-parser-1.20.1.tgz} + resolution: {integrity: sha1-sYEqiRLBlc03Gj7l5m+qIzilxmg=} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dependencies: bytes: 3.1.2 @@ -3306,11 +3345,11 @@ packages: dev: false /boolbase@1.0.0: - resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=, tarball: artifactory/api/npm/npm/boolbase/-/boolbase-1.0.0.tgz} + resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=} dev: false /brace-expansion@1.1.11: - resolution: {integrity: sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=, tarball: artifactory/api/npm/npm/brace-expansion/-/brace-expansion-1.1.11.tgz} + resolution: {integrity: sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=} dependencies: balanced-match: 1.0.0 concat-map: 0.0.1 @@ -3330,13 +3369,13 @@ packages: dev: true /browserify-zlib@0.1.4: - resolution: {integrity: sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=, tarball: artifactory/api/npm/npm/browserify-zlib/-/browserify-zlib-0.1.4.tgz} + resolution: {integrity: sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=} dependencies: pako: 0.2.9 dev: false /browserslist@4.21.5: - resolution: {integrity: sha1-dcXa5gBj7mQfl34A7dPPsvt69qc=, tarball: artifactory/api/npm/npm/browserslist/-/browserslist-4.21.5.tgz} + resolution: {integrity: sha1-dcXa5gBj7mQfl34A7dPPsvt69qc=} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: @@ -3344,6 +3383,7 @@ packages: electron-to-chromium: 1.4.288 node-releases: 2.0.10 update-browserslist-db: 1.0.10(browserslist@4.21.5) + dev: true /browserslist@4.23.0: resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} @@ -3363,7 +3403,7 @@ packages: dev: true /buffer-from@1.1.1: - resolution: {integrity: sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=, tarball: artifactory/api/npm/npm/buffer-from/-/buffer-from-1.1.1.tgz} + resolution: {integrity: sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=} /builtin-modules@3.3.0: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} @@ -3371,18 +3411,18 @@ packages: dev: true /builtins@5.0.1: - resolution: {integrity: sha1-h/bbmrBFi+coVk+oHYdtjXRVL6k=, tarball: artifactory/api/npm/npm/builtins/-/builtins-5.0.1.tgz} + resolution: {integrity: sha1-h/bbmrBFi+coVk+oHYdtjXRVL6k=} dependencies: semver: 7.6.0 dev: false /bytes@3.1.2: - resolution: {integrity: sha1-iwvuuYYFrfGxKPpDhkA8AJ4CIaU=, tarball: artifactory/api/npm/npm/bytes/-/bytes-3.1.2.tgz} + resolution: {integrity: sha1-iwvuuYYFrfGxKPpDhkA8AJ4CIaU=} engines: {node: '>= 0.8'} dev: false /call-bind@1.0.2: - resolution: {integrity: sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=, tarball: artifactory/api/npm/npm/call-bind/-/call-bind-1.0.2.tgz} + resolution: {integrity: sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw=} dependencies: function-bind: 1.1.1 get-intrinsic: 1.2.0 @@ -3399,7 +3439,7 @@ packages: dev: true /callsites@3.1.0: - resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=, tarball: artifactory/api/npm/npm/callsites/-/callsites-3.1.0.tgz} + resolution: {integrity: sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=} engines: {node: '>=6'} /camelcase@5.3.1: @@ -3413,7 +3453,8 @@ packages: dev: true /caniuse-lite@1.0.30001450: - resolution: {integrity: sha1-AiIluRIAWJGWuBS1Gxu+RRRM908=, tarball: artifactory/api/npm/npm/caniuse-lite/-/caniuse-lite-1.0.30001450.tgz} + resolution: {integrity: sha1-AiIluRIAWJGWuBS1Gxu+RRRM908=} + dev: true /caniuse-lite@1.0.30001588: resolution: {integrity: sha512-+hVY9jE44uKLkH0SrUTqxjxqNTOWHsbnQDIKjwkZ3lNTzUUVdBLBGXtj/q5Mp5u98r3droaZAewQuEDzjQdZlQ==} @@ -3446,7 +3487,7 @@ packages: dev: true /cheerio-select@2.1.0: - resolution: {integrity: sha1-TYZzKGuBJsoqjkJ0DV48SISuIbQ=, tarball: artifactory/api/npm/npm/cheerio-select/-/cheerio-select-2.1.0.tgz} + resolution: {integrity: sha1-TYZzKGuBJsoqjkJ0DV48SISuIbQ=} dependencies: boolbase: 1.0.0 css-select: 5.1.0 @@ -3457,7 +3498,7 @@ packages: dev: false /cheerio@1.0.0-rc.12: - resolution: {integrity: sha1-eIv3RmUGsca/X65R0kosTWLkdoM=, tarball: artifactory/api/npm/npm/cheerio/-/cheerio-1.0.0-rc.12.tgz} + resolution: {integrity: sha1-eIv3RmUGsca/X65R0kosTWLkdoM=} engines: {node: '>= 6'} dependencies: cheerio-select: 2.1.0 @@ -3503,21 +3544,21 @@ packages: dev: true /clone-buffer@1.0.0: - resolution: {integrity: sha1-4+JbIHrE5wGvch4staFnksrD3Fg=, tarball: artifactory/api/npm/npm/clone-buffer/-/clone-buffer-1.0.0.tgz} + resolution: {integrity: sha1-4+JbIHrE5wGvch4staFnksrD3Fg=} engines: {node: '>= 0.10'} dev: true /clone-stats@1.0.0: - resolution: {integrity: sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=, tarball: artifactory/api/npm/npm/clone-stats/-/clone-stats-1.0.0.tgz} + resolution: {integrity: sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=} dev: true /clone@2.1.2: - resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=, tarball: artifactory/api/npm/npm/clone/-/clone-2.1.2.tgz} + resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=} engines: {node: '>=0.8'} dev: true /cloneable-readable@1.1.2: - resolution: {integrity: sha1-1ZHe5Kj4vBXaQ86X3O66E9Q+KmU=, tarball: artifactory/api/npm/npm/cloneable-readable/-/cloneable-readable-1.1.2.tgz} + resolution: {integrity: sha1-1ZHe5Kj4vBXaQ86X3O66E9Q+KmU=} dependencies: inherits: 2.0.4 process-nextick-args: 2.0.0 @@ -3534,22 +3575,22 @@ packages: dev: true /color-convert@1.9.3: - resolution: {integrity: sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=, tarball: artifactory/api/npm/npm/color-convert/-/color-convert-1.9.3.tgz} + resolution: {integrity: sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=} dependencies: color-name: 1.1.3 /color-convert@2.0.1: - resolution: {integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=, tarball: artifactory/api/npm/npm/color-convert/-/color-convert-2.0.1.tgz} + resolution: {integrity: sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=} engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 dev: true /color-name@1.1.3: - resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=, tarball: artifactory/api/npm/npm/color-name/-/color-name-1.1.3.tgz} + resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} /color-name@1.1.4: - resolution: {integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=, tarball: artifactory/api/npm/npm/color-name/-/color-name-1.1.4.tgz} + resolution: {integrity: sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=} dev: true /combined-stream@1.0.8: @@ -3568,38 +3609,38 @@ packages: dev: true /concat-map@0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=, tarball: artifactory/api/npm/npm/concat-map/-/concat-map-0.0.1.tgz} + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} dev: true /confusing-browser-globals@1.0.11: - resolution: {integrity: sha1-rkDptXzdORVAiigF69OlWFYI3IE=, tarball: artifactory/api/npm/npm/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz} + resolution: {integrity: sha1-rkDptXzdORVAiigF69OlWFYI3IE=} dev: true /content-disposition@0.5.4: - resolution: {integrity: sha1-i4K076yCUSoCuwsdzsnSxejrW/4=, tarball: artifactory/api/npm/npm/content-disposition/-/content-disposition-0.5.4.tgz} + resolution: {integrity: sha1-i4K076yCUSoCuwsdzsnSxejrW/4=} engines: {node: '>= 0.6'} dependencies: safe-buffer: 5.2.1 dev: false /content-type@1.0.5: - resolution: {integrity: sha1-i3cxYmVtHRCGeEyPI6VM5tc9eRg=, tarball: artifactory/api/npm/npm/content-type/-/content-type-1.0.5.tgz} + resolution: {integrity: sha1-i3cxYmVtHRCGeEyPI6VM5tc9eRg=} engines: {node: '>= 0.6'} dev: false /convert-source-map@1.9.0: - resolution: {integrity: sha1-f6rmI1P7QhM2bQypg1jSLoNosF8=, tarball: artifactory/api/npm/npm/convert-source-map/-/convert-source-map-1.9.0.tgz} + resolution: {integrity: sha1-f6rmI1P7QhM2bQypg1jSLoNosF8=} /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} dev: true /cookie-signature@1.0.6: - resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=, tarball: artifactory/api/npm/npm/cookie-signature/-/cookie-signature-1.0.6.tgz} + resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} dev: false /cookie@0.5.0: - resolution: {integrity: sha1-0fXXGt7GVYxY84mYfDZqpH6ZT4s=, tarball: artifactory/api/npm/npm/cookie/-/cookie-0.5.0.tgz} + resolution: {integrity: sha1-0fXXGt7GVYxY84mYfDZqpH6ZT4s=} engines: {node: '>= 0.6'} dev: false @@ -3608,16 +3649,16 @@ packages: dev: true /core-js-compat@3.27.2: - resolution: {integrity: sha1-YHxQrW24/YMmrwsog+u5h743hto=, tarball: artifactory/api/npm/npm/core-js-compat/-/core-js-compat-3.27.2.tgz} + resolution: {integrity: sha1-YHxQrW24/YMmrwsog+u5h743hto=} dependencies: browserslist: 4.21.5 dev: true /core-util-is@1.0.2: - resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=, tarball: artifactory/api/npm/npm/core-util-is/-/core-util-is-1.0.2.tgz} + resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=} /cors@2.8.5: - resolution: {integrity: sha1-6sEdpRWS3Ya58G9uesKTs9+HXSk=, tarball: artifactory/api/npm/npm/cors/-/cors-2.8.5.tgz} + resolution: {integrity: sha1-6sEdpRWS3Ya58G9uesKTs9+HXSk=} engines: {node: '>= 0.10'} dependencies: object-assign: 4.1.1 @@ -3625,7 +3666,7 @@ packages: dev: false /cosmiconfig@7.1.0: - resolution: {integrity: sha1-FEO5r6WWtnAILqRsvY9qYrhGNfY=, tarball: artifactory/api/npm/npm/cosmiconfig/-/cosmiconfig-7.1.0.tgz} + resolution: {integrity: sha1-FEO5r6WWtnAILqRsvY9qYrhGNfY=} engines: {node: '>=10'} dependencies: '@types/parse-json': 4.0.0 @@ -3670,7 +3711,7 @@ packages: dev: false /css-select@5.1.0: - resolution: {integrity: sha1-uOvWVUw2N8zHZoiAStP2pv2uqKY=, tarball: artifactory/api/npm/npm/css-select/-/css-select-5.1.0.tgz} + resolution: {integrity: sha1-uOvWVUw2N8zHZoiAStP2pv2uqKY=} dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -3680,7 +3721,7 @@ packages: dev: false /css-what@6.1.0: - resolution: {integrity: sha1-+17/z3bx3eosgb36pN5E55uscPQ=, tarball: artifactory/api/npm/npm/css-what/-/css-what-6.1.0.tgz} + resolution: {integrity: sha1-+17/z3bx3eosgb36pN5E55uscPQ=} engines: {node: '>= 6'} dev: false @@ -3693,12 +3734,12 @@ packages: dev: true /date-fns@2.29.3: - resolution: {integrity: sha1-J0AtL8Z+tEK1EbcLvfmOZBHNaKg=, tarball: artifactory/api/npm/npm/date-fns/-/date-fns-2.29.3.tgz} + resolution: {integrity: sha1-J0AtL8Z+tEK1EbcLvfmOZBHNaKg=} engines: {node: '>=0.11'} dev: false /debug@2.6.9: - resolution: {integrity: sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=, tarball: artifactory/api/npm/npm/debug/-/debug-2.6.9.tgz} + resolution: {integrity: sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=} peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -3709,7 +3750,7 @@ packages: dev: false /debug@3.2.7: - resolution: {integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=, tarball: artifactory/api/npm/npm/debug/-/debug-3.2.7.tgz} + resolution: {integrity: sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=} peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -3720,7 +3761,7 @@ packages: dev: true /debug@4.3.4(supports-color@5.5.0): - resolution: {integrity: sha1-Exn2V5NX8jONMzfSzdSRS7XcyGU=, tarball: artifactory/api/npm/npm/debug/-/debug-4.3.4.tgz} + resolution: {integrity: sha1-Exn2V5NX8jONMzfSzdSRS7XcyGU=} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -3730,6 +3771,7 @@ packages: dependencies: ms: 2.1.2 supports-color: 5.5.0 + dev: true /dedent@1.5.1: resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} @@ -3781,7 +3823,7 @@ packages: dev: true /depd@2.0.0: - resolution: {integrity: sha1-tpYWPMdXVg0JzyLMj60Vcbeedt8=, tarball: artifactory/api/npm/npm/depd/-/depd-2.0.0.tgz} + resolution: {integrity: sha1-tpYWPMdXVg0JzyLMj60Vcbeedt8=} engines: {node: '>= 0.8'} dev: false @@ -3791,7 +3833,7 @@ packages: dev: true /destroy@1.2.0: - resolution: {integrity: sha1-SANzVQmti+VSk0xn32FPlOZvoBU=, tarball: artifactory/api/npm/npm/destroy/-/destroy-1.2.0.tgz} + resolution: {integrity: sha1-SANzVQmti+VSk0xn32FPlOZvoBU=} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dev: false @@ -3834,7 +3876,7 @@ packages: dev: true /dom-serializer@2.0.0: - resolution: {integrity: sha1-5BuALh7t+fbK4YPOXmIteJ19jlM=, tarball: artifactory/api/npm/npm/dom-serializer/-/dom-serializer-2.0.0.tgz} + resolution: {integrity: sha1-5BuALh7t+fbK4YPOXmIteJ19jlM=} dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 @@ -3842,18 +3884,18 @@ packages: dev: false /domelementtype@2.3.0: - resolution: {integrity: sha1-XEXo6GmVJiYzHXqrMm0B2vZdWJ0=, tarball: artifactory/api/npm/npm/domelementtype/-/domelementtype-2.3.0.tgz} + resolution: {integrity: sha1-XEXo6GmVJiYzHXqrMm0B2vZdWJ0=} dev: false /domhandler@5.0.3: - resolution: {integrity: sha1-zDhff3UfHR/GUMITdIBCVFOMfTE=, tarball: artifactory/api/npm/npm/domhandler/-/domhandler-5.0.3.tgz} + resolution: {integrity: sha1-zDhff3UfHR/GUMITdIBCVFOMfTE=} engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 dev: false /domutils@3.0.1: - resolution: {integrity: sha1-aWs4dSODOMsYa2wGEr1JAciaTxw=, tarball: artifactory/api/npm/npm/domutils/-/domutils-3.0.1.tgz} + resolution: {integrity: sha1-aWs4dSODOMsYa2wGEr1JAciaTxw=} dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 @@ -3866,7 +3908,7 @@ packages: dev: true /duplexify@3.7.1: - resolution: {integrity: sha1-Kk31MX9sz9kfhtb9JdjYoQO4gwk=, tarball: artifactory/api/npm/npm/duplexify/-/duplexify-3.7.1.tgz} + resolution: {integrity: sha1-Kk31MX9sz9kfhtb9JdjYoQO4gwk=} dependencies: end-of-stream: 1.4.1 inherits: 2.0.4 @@ -3875,11 +3917,12 @@ packages: dev: false /ee-first@1.1.1: - resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=, tarball: artifactory/api/npm/npm/ee-first/-/ee-first-1.1.1.tgz} + resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} dev: false /electron-to-chromium@1.4.288: - resolution: {integrity: sha1-u84A6wPBgZ/j0NDYYTdLdsU/dQc=, tarball: artifactory/api/npm/npm/electron-to-chromium/-/electron-to-chromium-1.4.288.tgz} + resolution: {integrity: sha1-u84A6wPBgZ/j0NDYYTdLdsU/dQc=} + dev: true /electron-to-chromium@1.4.677: resolution: {integrity: sha512-erDa3CaDzwJOpyvfKhOiJjBVNnMM0qxHq47RheVVwsSQrgBA9ZSGV9kdaOfZDPXcHzhG7lBxhj6A7KvfLJBd6Q==} @@ -3899,23 +3942,23 @@ packages: dev: true /encodeurl@1.0.2: - resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=, tarball: artifactory/api/npm/npm/encodeurl/-/encodeurl-1.0.2.tgz} + resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} engines: {node: '>= 0.8'} dev: false /end-of-stream@1.4.1: - resolution: {integrity: sha1-7SljTRm6ukY7bOa4CjchPqtx7EM=, tarball: artifactory/api/npm/npm/end-of-stream/-/end-of-stream-1.4.1.tgz} + resolution: {integrity: sha1-7SljTRm6ukY7bOa4CjchPqtx7EM=} dependencies: once: 1.4.0 dev: false /entities@4.4.0: - resolution: {integrity: sha1-l72roXAzlEZJXmU8/S23iWKQAXQ=, tarball: artifactory/api/npm/npm/entities/-/entities-4.4.0.tgz} + resolution: {integrity: sha1-l72roXAzlEZJXmU8/S23iWKQAXQ=} engines: {node: '>=0.12'} dev: false /error-ex@1.3.2: - resolution: {integrity: sha1-tKxAZIEH/c3PriQvQovqihTU8b8=, tarball: artifactory/api/npm/npm/error-ex/-/error-ex-1.3.2.tgz} + resolution: {integrity: sha1-tKxAZIEH/c3PriQvQovqihTU8b8=} dependencies: is-arrayish: 0.2.1 @@ -4082,11 +4125,12 @@ packages: dev: true /escalade@3.1.1: - resolution: {integrity: sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=, tarball: artifactory/api/npm/npm/escalade/-/escalade-3.1.1.tgz} + resolution: {integrity: sha1-2M/ccACWXFoBdLSoLqpcBVJ0LkA=} engines: {node: '>=6'} + dev: true /escape-html@1.0.3: - resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=, tarball: artifactory/api/npm/npm/escape-html/-/escape-html-1.0.3.tgz} + resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} dev: false /escape-string-regexp@1.0.5: @@ -4103,7 +4147,7 @@ packages: engines: {node: '>=10'} /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.20.13)(eslint@8.56.0)(jest@29.7.0)(typescript@5.3.3): - resolution: {integrity: sha1-c7o5KZeAAcXIYnTAF+pX61+mRLQ=, tarball: artifactory/api/npm/npm/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz} + resolution: {integrity: sha1-c7o5KZeAAcXIYnTAF+pX61+mRLQ=} engines: {node: '>=14.0.0'} peerDependencies: eslint: ^8.0.0 @@ -4206,7 +4250,7 @@ packages: dev: true /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.20.13)(eslint@8.56.0): - resolution: {integrity: sha1-4VV+NxGPJHNKoxIudTagONNKSRI=, tarball: artifactory/api/npm/npm/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz} + resolution: {integrity: sha1-4VV+NxGPJHNKoxIudTagONNKSRI=} engines: {node: '>=12.0.0'} peerDependencies: '@babel/plugin-syntax-flow': ^7.14.5 @@ -4291,7 +4335,7 @@ packages: dev: true /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.51.0)(eslint@8.56.0)(jest@29.7.0)(typescript@5.3.3): - resolution: {integrity: sha1-/0rJdSC1OpYYe62cmBTn0A3gmmo=, tarball: artifactory/api/npm/npm/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz} + resolution: {integrity: sha1-/0rJdSC1OpYYe62cmBTn0A3gmmo=} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 @@ -4338,7 +4382,7 @@ packages: dev: true /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): - resolution: {integrity: sha1-TD5petlbd+k/hkaqoWMMG6YH7dM=, tarball: artifactory/api/npm/npm/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz} + resolution: {integrity: sha1-TD5petlbd+k/hkaqoWMMG6YH7dM=} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 @@ -4372,7 +4416,7 @@ packages: dev: true /eslint-plugin-testing-library@5.10.0(eslint@8.56.0)(typescript@5.3.3): - resolution: {integrity: sha1-f8X+xjmuf4T0NFYlYM8mz8CrMp0=, tarball: artifactory/api/npm/npm/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.0.tgz} + resolution: {integrity: sha1-f8X+xjmuf4T0NFYlYM8mz8CrMp0=} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 @@ -4401,7 +4445,7 @@ packages: dev: true /eslint-utils@3.0.0(eslint@8.56.0): - resolution: {integrity: sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=, tarball: artifactory/api/npm/npm/eslint-utils/-/eslint-utils-3.0.0.tgz} + resolution: {integrity: sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI=} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' @@ -4512,7 +4556,7 @@ packages: dev: true /estree-walker@2.0.1: - resolution: {integrity: sha1-+OAw+yHO+hg7RLetUWt0dDTno+A=, tarball: artifactory/api/npm/npm/estree-walker/-/estree-walker-2.0.1.tgz} + resolution: {integrity: sha1-+OAw+yHO+hg7RLetUWt0dDTno+A=} dev: true /estree-walker@2.0.2: @@ -4525,7 +4569,7 @@ packages: dev: true /etag@1.8.1: - resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=, tarball: artifactory/api/npm/npm/etag/-/etag-1.8.1.tgz} + resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=} engines: {node: '>= 0.6'} dev: false @@ -4561,7 +4605,7 @@ packages: dev: true /express@4.18.2: - resolution: {integrity: sha1-P6vggpbpMMeWwZ48UWl5OGup/Vk=, tarball: artifactory/api/npm/npm/express/-/express-4.18.2.tgz} + resolution: {integrity: sha1-P6vggpbpMMeWwZ48UWl5OGup/Vk=} engines: {node: '>= 0.10.0'} dependencies: accepts: 1.3.8 @@ -4619,7 +4663,7 @@ packages: dev: true /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=, tarball: artifactory/api/npm/npm/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz} + resolution: {integrity: sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=} dev: true /fast-levenshtein@2.0.6: @@ -4657,7 +4701,7 @@ packages: dev: true /finalhandler@1.2.0: - resolution: {integrity: sha1-fSP+VzGyB7RkDk/NAK7B+SB6ezI=, tarball: artifactory/api/npm/npm/finalhandler/-/finalhandler-1.2.0.tgz} + resolution: {integrity: sha1-fSP+VzGyB7RkDk/NAK7B+SB6ezI=} engines: {node: '>= 0.8'} dependencies: debug: 2.6.9 @@ -4728,12 +4772,12 @@ packages: dev: true /forwarded@0.2.0: - resolution: {integrity: sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=, tarball: artifactory/api/npm/npm/forwarded/-/forwarded-0.2.0.tgz} + resolution: {integrity: sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=} engines: {node: '>= 0.6'} dev: false /fresh@0.5.2: - resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=, tarball: artifactory/api/npm/npm/fresh/-/fresh-0.5.2.tgz} + resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} engines: {node: '>= 0.6'} dev: false @@ -4750,7 +4794,7 @@ packages: optional: true /function-bind@1.1.1: - resolution: {integrity: sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=, tarball: artifactory/api/npm/npm/function-bind/-/function-bind-1.1.1.tgz} + resolution: {integrity: sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=} /function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} @@ -4780,8 +4824,9 @@ packages: dev: true /gensync@1.0.0-beta.2: - resolution: {integrity: sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=, tarball: artifactory/api/npm/npm/gensync/-/gensync-1.0.0-beta.2.tgz} + resolution: {integrity: sha1-MqbudsPX9S1GsrGuXZP+qFgKJeA=} engines: {node: '>=6.9.0'} + dev: true /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} @@ -4789,7 +4834,7 @@ packages: dev: true /get-intrinsic@1.2.0: - resolution: {integrity: sha1-etHcBTXzopBLugdXcnY+UFH20F8=, tarball: artifactory/api/npm/npm/get-intrinsic/-/get-intrinsic-1.2.0.tgz} + resolution: {integrity: sha1-etHcBTXzopBLugdXcnY+UFH20F8=} dependencies: function-bind: 1.1.1 has: 1.0.3 @@ -4870,8 +4915,9 @@ packages: dev: true /globals@11.12.0: - resolution: {integrity: sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=, tarball: artifactory/api/npm/npm/globals/-/globals-11.12.0.tgz} + resolution: {integrity: sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=} engines: {node: '>=4'} + dev: true /globals@13.20.0: resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} @@ -4900,7 +4946,7 @@ packages: dev: true /google-closure-compiler-java@20210808.0.0: - resolution: {integrity: sha1-lyIHPirODtGpk0Qj5id8mZRBjoQ=, tarball: artifactory/api/npm/npm/google-closure-compiler-java/-/google-closure-compiler-java-20210808.0.0.tgz} + resolution: {integrity: sha1-lyIHPirODtGpk0Qj5id8mZRBjoQ=} dev: true /google-closure-compiler-linux@20210808.0.0: @@ -4928,7 +4974,7 @@ packages: optional: true /google-closure-compiler@20210808.0.0: - resolution: {integrity: sha1-BjjnHxBz9xaCJ3IA23HQ6gWz3h0=, tarball: artifactory/api/npm/npm/google-closure-compiler/-/google-closure-compiler-20210808.0.0.tgz} + resolution: {integrity: sha1-BjjnHxBz9xaCJ3IA23HQ6gWz3h0=} engines: {node: '>=10'} hasBin: true dependencies: @@ -4954,7 +5000,7 @@ packages: dev: true /grapheme-splitter@1.0.4: - resolution: {integrity: sha1-nPOmZcYkdHmJaDSvNc8du0QAdn4=, tarball: artifactory/api/npm/npm/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz} + resolution: {integrity: sha1-nPOmZcYkdHmJaDSvNc8du0QAdn4=} dev: true /graphemer@1.4.0: @@ -4962,7 +5008,7 @@ packages: dev: true /gunzip-maybe@1.4.2: - resolution: {integrity: sha1-uRNWSuO+DtpvPeNkZIN6nNlLmKw=, tarball: artifactory/api/npm/npm/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz} + resolution: {integrity: sha1-uRNWSuO+DtpvPeNkZIN6nNlLmKw=} hasBin: true dependencies: browserify-zlib: 0.1.4 @@ -4982,7 +5028,7 @@ packages: engines: {node: '>=4'} /has-flag@4.0.0: - resolution: {integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=, tarball: artifactory/api/npm/npm/has-flag/-/has-flag-4.0.0.tgz} + resolution: {integrity: sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=} engines: {node: '>=8'} dev: true @@ -5009,7 +5055,7 @@ packages: dev: true /has-symbols@1.0.3: - resolution: {integrity: sha1-u3ssQ0klHc6HsSX3vfh0qnyLOfg=, tarball: artifactory/api/npm/npm/has-symbols/-/has-symbols-1.0.3.tgz} + resolution: {integrity: sha1-u3ssQ0klHc6HsSX3vfh0qnyLOfg=} engines: {node: '>= 0.4'} /has-tostringtag@1.0.0: @@ -5027,7 +5073,7 @@ packages: dev: true /has@1.0.3: - resolution: {integrity: sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=, tarball: artifactory/api/npm/npm/has/-/has-1.0.3.tgz} + resolution: {integrity: sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=} engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 @@ -5059,7 +5105,7 @@ packages: dev: true /htmlparser2@8.0.1: - resolution: {integrity: sha1-q6qYVHT87+JpvHYad5tUTXGW0BA=, tarball: artifactory/api/npm/npm/htmlparser2/-/htmlparser2-8.0.1.tgz} + resolution: {integrity: sha1-q6qYVHT87+JpvHYad5tUTXGW0BA=} dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 @@ -5068,7 +5114,7 @@ packages: dev: false /http-errors@2.0.0: - resolution: {integrity: sha1-t3dKFIbvc892Z6ya4IWMASxXudM=, tarball: artifactory/api/npm/npm/http-errors/-/http-errors-2.0.0.tgz} + resolution: {integrity: sha1-t3dKFIbvc892Z6ya4IWMASxXudM=} engines: {node: '>= 0.8'} dependencies: depd: 2.0.0 @@ -5084,7 +5130,7 @@ packages: dev: true /iconv-lite@0.4.24: - resolution: {integrity: sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=, tarball: artifactory/api/npm/npm/iconv-lite/-/iconv-lite-0.4.24.tgz} + resolution: {integrity: sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=} engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 @@ -5100,7 +5146,7 @@ packages: dev: true /import-fresh@3.3.0: - resolution: {integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=, tarball: artifactory/api/npm/npm/import-fresh/-/import-fresh-3.3.0.tgz} + resolution: {integrity: sha1-NxYsJfy566oublPVtNiM4X2eDCs=} engines: {node: '>=6'} dependencies: parent-module: 1.0.1 @@ -5128,7 +5174,7 @@ packages: dev: true /inherits@2.0.4: - resolution: {integrity: sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=, tarball: artifactory/api/npm/npm/inherits/-/inherits-2.0.4.tgz} + resolution: {integrity: sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=} /internal-slot@1.0.4: resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==} @@ -5149,7 +5195,7 @@ packages: dev: true /ipaddr.js@1.9.1: - resolution: {integrity: sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=, tarball: artifactory/api/npm/npm/ipaddr.js/-/ipaddr.js-1.9.1.tgz} + resolution: {integrity: sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=} engines: {node: '>= 0.10'} dev: false @@ -5170,7 +5216,7 @@ packages: dev: true /is-arrayish@0.2.1: - resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=, tarball: artifactory/api/npm/npm/is-arrayish/-/is-arrayish-0.2.1.tgz} + resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} /is-async-function@2.0.0: resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} @@ -5213,7 +5259,7 @@ packages: dev: true /is-core-module@2.11.0: - resolution: {integrity: sha1-rUyz44Y+gUUjyW8/WNJsxXD/AUQ=, tarball: artifactory/api/npm/npm/is-core-module/-/is-core-module-2.11.0.tgz} + resolution: {integrity: sha1-rUyz44Y+gUUjyW8/WNJsxXD/AUQ=} dependencies: has: 1.0.3 dev: true @@ -5231,7 +5277,7 @@ packages: dev: true /is-deflate@1.0.0: - resolution: {integrity: sha1-yGKQHDwWH7CdrHzcfnhPgOmPLxQ=, tarball: artifactory/api/npm/npm/is-deflate/-/is-deflate-1.0.0.tgz} + resolution: {integrity: sha1-yGKQHDwWH7CdrHzcfnhPgOmPLxQ=} dev: false /is-extglob@2.1.1: @@ -5270,7 +5316,7 @@ packages: dev: true /is-gzip@1.0.0: - resolution: {integrity: sha1-bKiwe5nHeZgCWQDlVc7Y7YCHmoM=, tarball: artifactory/api/npm/npm/is-gzip/-/is-gzip-1.0.0.tgz} + resolution: {integrity: sha1-bKiwe5nHeZgCWQDlVc7Y7YCHmoM=} engines: {node: '>=0.10.0'} dev: false @@ -5388,7 +5434,7 @@ packages: dev: true /isarray@1.0.0: - resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=, tarball: artifactory/api/npm/npm/isarray/-/isarray-1.0.0.tgz} + resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} /isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} @@ -5399,7 +5445,7 @@ packages: dev: true /isomorphic-fetch@3.0.0: - resolution: {integrity: sha1-AmewBQSQRtJCEgchXUXWomK4uLQ=, tarball: artifactory/api/npm/npm/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz} + resolution: {integrity: sha1-AmewBQSQRtJCEgchXUXWomK4uLQ=} dependencies: node-fetch: 2.6.9 whatwg-fetch: 3.6.2 @@ -5887,7 +5933,7 @@ packages: dev: true /js-tokens@4.0.0: - resolution: {integrity: sha1-GSA/tZmR35jjoocFDUZHzerzJJk=, tarball: artifactory/api/npm/npm/js-tokens/-/js-tokens-4.0.0.tgz} + resolution: {integrity: sha1-GSA/tZmR35jjoocFDUZHzerzJJk=} /js-yaml@3.13.1: resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} @@ -5905,23 +5951,24 @@ packages: dev: true /jsesc@0.5.0: - resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=, tarball: artifactory/api/npm/npm/jsesc/-/jsesc-0.5.0.tgz} + resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=} hasBin: true dev: true /jsesc@2.5.2: - resolution: {integrity: sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=, tarball: artifactory/api/npm/npm/jsesc/-/jsesc-2.5.2.tgz} + resolution: {integrity: sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=} engines: {node: '>=4'} hasBin: true + dev: true /jsesc@3.0.2: - resolution: {integrity: sha1-u4sJpll7pCZCXy5KByRcPQC5ND4=, tarball: artifactory/api/npm/npm/jsesc/-/jsesc-3.0.2.tgz} + resolution: {integrity: sha1-u4sJpll7pCZCXy5KByRcPQC5ND4=} engines: {node: '>=6'} hasBin: true dev: false /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=, tarball: artifactory/api/npm/npm/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz} + resolution: {integrity: sha1-fEeAWpQxmSjgV3dAXcEuH3pO4C0=} /json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} @@ -5932,7 +5979,7 @@ packages: dev: true /json-stringify-safe@5.0.1: - resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=, tarball: artifactory/api/npm/npm/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz} + resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=} dev: false /json5@1.0.2: @@ -5943,9 +5990,10 @@ packages: dev: true /json5@2.2.3: - resolution: {integrity: sha1-eM1vGhm9wStz21rQxh79ZsHikoM=, tarball: artifactory/api/npm/npm/json5/-/json5-2.2.3.tgz} + resolution: {integrity: sha1-eM1vGhm9wStz21rQxh79ZsHikoM=} engines: {node: '>=6'} hasBin: true + dev: true /jsx-ast-utils@3.3.3: resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} @@ -5995,7 +6043,7 @@ packages: dev: true /lines-and-columns@1.2.4: - resolution: {integrity: sha1-7KKE910pZQeTCdwK2SVauy68FjI=, tarball: artifactory/api/npm/npm/lines-and-columns/-/lines-and-columns-1.2.4.tgz} + resolution: {integrity: sha1-7KKE910pZQeTCdwK2SVauy68FjI=} /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} @@ -6012,7 +6060,7 @@ packages: dev: true /lodash.debounce@4.0.8: - resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=, tarball: artifactory/api/npm/npm/lodash.debounce/-/lodash.debounce-4.0.8.tgz} + resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=} dev: true /lodash.merge@4.6.2: @@ -6020,11 +6068,11 @@ packages: dev: true /lodash@4.17.21: - resolution: {integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=, tarball: artifactory/api/npm/npm/lodash/-/lodash-4.17.21.tgz} + resolution: {integrity: sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=} dev: true /loose-envify@1.4.0: - resolution: {integrity: sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=, tarball: artifactory/api/npm/npm/loose-envify/-/loose-envify-1.4.0.tgz} + resolution: {integrity: sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=} hasBin: true dependencies: js-tokens: 4.0.0 @@ -6038,6 +6086,7 @@ packages: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.0.3 + dev: true /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} @@ -6046,7 +6095,7 @@ packages: yallist: 4.0.0 /magic-string@0.25.7: - resolution: {integrity: sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=, tarball: artifactory/api/npm/npm/magic-string/-/magic-string-0.25.7.tgz} + resolution: {integrity: sha1-P0l9b9NMZpxnmNy4IfLvMfVEUFE=} dependencies: sourcemap-codec: 1.4.8 dev: true @@ -6072,12 +6121,12 @@ packages: dev: true /media-typer@0.3.0: - resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=, tarball: artifactory/api/npm/npm/media-typer/-/media-typer-0.3.0.tgz} + resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} engines: {node: '>= 0.6'} dev: false /merge-descriptors@1.0.1: - resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=, tarball: artifactory/api/npm/npm/merge-descriptors/-/merge-descriptors-1.0.1.tgz} + resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} dev: false /merge-stream@2.0.0: @@ -6094,7 +6143,7 @@ packages: engines: {node: '>= 0.6'} /micromatch@4.0.5: - resolution: {integrity: sha1-vImZp8u/d83InxMvbkZwUbSQkMY=, tarball: artifactory/api/npm/npm/micromatch/-/micromatch-4.0.5.tgz} + resolution: {integrity: sha1-vImZp8u/d83InxMvbkZwUbSQkMY=} engines: {node: '>=8.6'} dependencies: braces: 3.0.2 @@ -6102,11 +6151,11 @@ packages: dev: true /mime-db@1.52.0: - resolution: {integrity: sha1-u6vNwChZ9JhzAchW4zh85exDv3A=, tarball: artifactory/api/npm/npm/mime-db/-/mime-db-1.52.0.tgz} + resolution: {integrity: sha1-u6vNwChZ9JhzAchW4zh85exDv3A=} engines: {node: '>= 0.6'} /mime-types@2.1.35: - resolution: {integrity: sha1-OBqHG2KnNEUGYK497uRIE/cNlZo=, tarball: artifactory/api/npm/npm/mime-types/-/mime-types-2.1.35.tgz} + resolution: {integrity: sha1-OBqHG2KnNEUGYK497uRIE/cNlZo=} engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 @@ -6141,7 +6190,7 @@ packages: dev: true /minimatch@3.1.2: - resolution: {integrity: sha1-Gc0ZS/0+Qo8EmnCBfAONiatL41s=, tarball: artifactory/api/npm/npm/minimatch/-/minimatch-3.1.2.tgz} + resolution: {integrity: sha1-Gc0ZS/0+Qo8EmnCBfAONiatL41s=} dependencies: brace-expansion: 1.1.11 dev: true @@ -6161,10 +6210,10 @@ packages: dev: true /minimist@1.2.7: - resolution: {integrity: sha1-2qHE2R9Qc5BDfGqLwBB45wAMTRg=, tarball: artifactory/api/npm/npm/minimist/-/minimist-1.2.7.tgz} + resolution: {integrity: sha1-2qHE2R9Qc5BDfGqLwBB45wAMTRg=} /morgan@1.10.0: - resolution: {integrity: sha1-CRd4q8H8R801CYJGU9rh+qtrF9c=, tarball: artifactory/api/npm/npm/morgan/-/morgan-1.10.0.tgz} + resolution: {integrity: sha1-CRd4q8H8R801CYJGU9rh+qtrF9c=} engines: {node: '>= 0.8.0'} dependencies: basic-auth: 2.0.1 @@ -6177,17 +6226,18 @@ packages: dev: false /ms@2.0.0: - resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=, tarball: artifactory/api/npm/npm/ms/-/ms-2.0.0.tgz} + resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} dev: false /ms@2.1.2: - resolution: {integrity: sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=, tarball: artifactory/api/npm/npm/ms/-/ms-2.1.2.tgz} + resolution: {integrity: sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=} + dev: true /ms@2.1.3: - resolution: {integrity: sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=, tarball: artifactory/api/npm/npm/ms/-/ms-2.1.3.tgz} + resolution: {integrity: sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=} /natural-compare-lite@1.4.0: - resolution: {integrity: sha1-F7CVgZiJef3a/gIB6TG6kzyWy7Q=, tarball: artifactory/api/npm/npm/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz} + resolution: {integrity: sha1-F7CVgZiJef3a/gIB6TG6kzyWy7Q=} dev: true /natural-compare@1.4.0: @@ -6195,7 +6245,7 @@ packages: dev: true /ndjson@2.0.0: - resolution: {integrity: sha1-MgrIb2/lP1aBiXNJuGrG9Dv6Ohk=, tarball: artifactory/api/npm/npm/ndjson/-/ndjson-2.0.0.tgz} + resolution: {integrity: sha1-MgrIb2/lP1aBiXNJuGrG9Dv6Ohk=} engines: {node: '>=10'} hasBin: true dependencies: @@ -6207,12 +6257,12 @@ packages: dev: false /negotiator@0.6.3: - resolution: {integrity: sha1-WOMjpy/twNb5zU0x/kn1FHlZDM0=, tarball: artifactory/api/npm/npm/negotiator/-/negotiator-0.6.3.tgz} + resolution: {integrity: sha1-WOMjpy/twNb5zU0x/kn1FHlZDM0=} engines: {node: '>= 0.6'} dev: false /node-fetch@2.6.9: - resolution: {integrity: sha1-fH90S1zG61/UBODHqf7GMKVWV+Y=, tarball: artifactory/api/npm/npm/node-fetch/-/node-fetch-2.6.9.tgz} + resolution: {integrity: sha1-fH90S1zG61/UBODHqf7GMKVWV+Y=} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 @@ -6228,7 +6278,8 @@ packages: dev: true /node-releases@2.0.10: - resolution: {integrity: sha1-wxHrrjtqFIyJsYE/18TTwCTvU38=, tarball: artifactory/api/npm/npm/node-releases/-/node-releases-2.0.10.tgz} + resolution: {integrity: sha1-wxHrrjtqFIyJsYE/18TTwCTvU38=} + dev: true /node-releases@2.0.14: resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} @@ -6271,17 +6322,17 @@ packages: dev: true /nth-check@2.1.1: - resolution: {integrity: sha1-yeq0KO/842zWuSySS9sADvHx7R0=, tarball: artifactory/api/npm/npm/nth-check/-/nth-check-2.1.1.tgz} + resolution: {integrity: sha1-yeq0KO/842zWuSySS9sADvHx7R0=} dependencies: boolbase: 1.0.0 dev: false /object-assign@4.1.1: - resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=, tarball: artifactory/api/npm/npm/object-assign/-/object-assign-4.1.1.tgz} + resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} engines: {node: '>=0.10.0'} /object-inspect@1.12.3: - resolution: {integrity: sha1-umLf/WfuJWyMCG365p4BbNHxmLk=, tarball: artifactory/api/npm/npm/object-inspect/-/object-inspect-1.12.3.tgz} + resolution: {integrity: sha1-umLf/WfuJWyMCG365p4BbNHxmLk=} /object-inspect@1.13.1: resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} @@ -6293,7 +6344,7 @@ packages: dev: true /object-path@0.6.0: - resolution: {integrity: sha1-tpp9EQk3k08zbKVh/ZvhrXt+DLc=, tarball: artifactory/api/npm/npm/object-path/-/object-path-0.6.0.tgz} + resolution: {integrity: sha1-tpp9EQk3k08zbKVh/ZvhrXt+DLc=} engines: {node: '>=0.8.0'} dev: false @@ -6389,21 +6440,21 @@ packages: dev: true /on-finished@2.3.0: - resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=, tarball: artifactory/api/npm/npm/on-finished/-/on-finished-2.3.0.tgz} + resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 dev: false /on-finished@2.4.1: - resolution: {integrity: sha1-WMjEQRblSEWtV/FKsQsDUzGErD8=, tarball: artifactory/api/npm/npm/on-finished/-/on-finished-2.4.1.tgz} + resolution: {integrity: sha1-WMjEQRblSEWtV/FKsQsDUzGErD8=} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 dev: false /on-headers@1.0.2: - resolution: {integrity: sha1-dysK5qqlJcOZ5Imt+tkMQD6zwo8=, tarball: artifactory/api/npm/npm/on-headers/-/on-headers-1.0.2.tgz} + resolution: {integrity: sha1-dysK5qqlJcOZ5Imt+tkMQD6zwo8=} engines: {node: '>= 0.8'} dev: false @@ -6439,7 +6490,7 @@ packages: dev: true /p-limit@3.1.0: - resolution: {integrity: sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=, tarball: artifactory/api/npm/npm/p-limit/-/p-limit-3.1.0.tgz} + resolution: {integrity: sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=} engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 @@ -6465,17 +6516,17 @@ packages: dev: true /pako@0.2.9: - resolution: {integrity: sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=, tarball: artifactory/api/npm/npm/pako/-/pako-0.2.9.tgz} + resolution: {integrity: sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=} dev: false /parent-module@1.0.1: - resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=, tarball: artifactory/api/npm/npm/parent-module/-/parent-module-1.0.1.tgz} + resolution: {integrity: sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=} engines: {node: '>=6'} dependencies: callsites: 3.1.0 /parse-json@5.2.0: - resolution: {integrity: sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=, tarball: artifactory/api/npm/npm/parse-json/-/parse-json-5.2.0.tgz} + resolution: {integrity: sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=} engines: {node: '>=8'} dependencies: '@babel/code-frame': 7.18.6 @@ -6484,51 +6535,51 @@ packages: lines-and-columns: 1.2.4 /parse5-htmlparser2-tree-adapter@7.0.0: - resolution: {integrity: sha1-I8LMIzvPCbt766i4pp1GsIxiwvE=, tarball: artifactory/api/npm/npm/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz} + resolution: {integrity: sha1-I8LMIzvPCbt766i4pp1GsIxiwvE=} dependencies: domhandler: 5.0.3 parse5: 7.1.2 dev: false /parse5@7.1.2: - resolution: {integrity: sha1-Bza+u/13eTgjJAojt/xeAQt/jjI=, tarball: artifactory/api/npm/npm/parse5/-/parse5-7.1.2.tgz} + resolution: {integrity: sha1-Bza+u/13eTgjJAojt/xeAQt/jjI=} dependencies: entities: 4.4.0 dev: false /parseurl@1.3.3: - resolution: {integrity: sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=, tarball: artifactory/api/npm/npm/parseurl/-/parseurl-1.3.3.tgz} + resolution: {integrity: sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=} engines: {node: '>= 0.8'} dev: false /path-exists@4.0.0: - resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=, tarball: artifactory/api/npm/npm/path-exists/-/path-exists-4.0.0.tgz} + resolution: {integrity: sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=} engines: {node: '>=8'} dev: true /path-is-absolute@1.0.1: - resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=, tarball: artifactory/api/npm/npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz} + resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} engines: {node: '>=0.10.0'} dev: true /path-key@3.1.1: - resolution: {integrity: sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=, tarball: artifactory/api/npm/npm/path-key/-/path-key-3.1.1.tgz} + resolution: {integrity: sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=} engines: {node: '>=8'} dev: true /path-parse@1.0.7: - resolution: {integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=, tarball: artifactory/api/npm/npm/path-parse/-/path-parse-1.0.7.tgz} + resolution: {integrity: sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=} /path-to-regexp@0.1.7: - resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=, tarball: artifactory/api/npm/npm/path-to-regexp/-/path-to-regexp-0.1.7.tgz} + resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} dev: false /path-type@4.0.0: - resolution: {integrity: sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=, tarball: artifactory/api/npm/npm/path-type/-/path-type-4.0.0.tgz} + resolution: {integrity: sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=} engines: {node: '>=8'} /peek-stream@1.1.3: - resolution: {integrity: sha1-OzXYS3zLvSYv/zHcENpWhW6tbWc=, tarball: artifactory/api/npm/npm/peek-stream/-/peek-stream-1.1.3.tgz} + resolution: {integrity: sha1-OzXYS3zLvSYv/zHcENpWhW6tbWc=} dependencies: buffer-from: 1.1.1 duplexify: 3.7.1 @@ -6536,7 +6587,8 @@ packages: dev: false /picocolors@1.0.0: - resolution: {integrity: sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=, tarball: artifactory/api/npm/npm/picocolors/-/picocolors-1.0.0.tgz} + resolution: {integrity: sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=} + dev: true /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} @@ -6566,7 +6618,7 @@ packages: dev: true /pretty-bytes@5.6.0: - resolution: {integrity: sha1-NWJW9kOAR3PIL2RyP+eMksYr6us=, tarball: artifactory/api/npm/npm/pretty-bytes/-/pretty-bytes-5.6.0.tgz} + resolution: {integrity: sha1-NWJW9kOAR3PIL2RyP+eMksYr6us=} engines: {node: '>=6'} dev: false @@ -6580,7 +6632,7 @@ packages: dev: true /process-nextick-args@2.0.0: - resolution: {integrity: sha1-o31zL0JxtKsa0HDTVQjoKQeI/6o=, tarball: artifactory/api/npm/npm/process-nextick-args/-/process-nextick-args-2.0.0.tgz} + resolution: {integrity: sha1-o31zL0JxtKsa0HDTVQjoKQeI/6o=} /prompts@2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} @@ -6591,14 +6643,14 @@ packages: dev: true /prop-types@15.8.1: - resolution: {integrity: sha1-Z9h78aaU9IQ1zzMsJK8QIUoxQLU=, tarball: artifactory/api/npm/npm/prop-types/-/prop-types-15.8.1.tgz} + resolution: {integrity: sha1-Z9h78aaU9IQ1zzMsJK8QIUoxQLU=} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 /proxy-addr@2.0.7: - resolution: {integrity: sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=, tarball: artifactory/api/npm/npm/proxy-addr/-/proxy-addr-2.0.7.tgz} + resolution: {integrity: sha1-8Z/mnOqzEe65S0LnDowgcPm6ECU=} engines: {node: '>= 0.10'} dependencies: forwarded: 0.2.0 @@ -6610,14 +6662,14 @@ packages: dev: true /pump@2.0.1: - resolution: {integrity: sha1-Ejma3W5M91Jtlzy8i1zi4pCLOQk=, tarball: artifactory/api/npm/npm/pump/-/pump-2.0.1.tgz} + resolution: {integrity: sha1-Ejma3W5M91Jtlzy8i1zi4pCLOQk=} dependencies: end-of-stream: 1.4.1 once: 1.4.0 dev: false /pumpify@1.5.1: - resolution: {integrity: sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4=, tarball: artifactory/api/npm/npm/pumpify/-/pumpify-1.5.1.tgz} + resolution: {integrity: sha1-NlE74karJ1cLGjdKXOJ4v9dDcM4=} dependencies: duplexify: 3.7.1 inherits: 2.0.4 @@ -6625,7 +6677,7 @@ packages: dev: false /punycode@2.1.1: - resolution: {integrity: sha1-tYsBCsQMIsVldhbI0sLALHv0eew=, tarball: artifactory/api/npm/npm/punycode/-/punycode-2.1.1.tgz} + resolution: {integrity: sha1-tYsBCsQMIsVldhbI0sLALHv0eew=} engines: {node: '>=6'} dev: true @@ -6639,7 +6691,7 @@ packages: dev: true /qs@6.11.0: - resolution: {integrity: sha1-/Q2WNEb3pl4TZ+AavYVClFPww3o=, tarball: artifactory/api/npm/npm/qs/-/qs-6.11.0.tgz} + resolution: {integrity: sha1-/Q2WNEb3pl4TZ+AavYVClFPww3o=} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 @@ -6653,12 +6705,12 @@ packages: dev: false /range-parser@1.2.1: - resolution: {integrity: sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=, tarball: artifactory/api/npm/npm/range-parser/-/range-parser-1.2.1.tgz} + resolution: {integrity: sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=} engines: {node: '>= 0.6'} dev: false /raw-body@2.5.1: - resolution: {integrity: sha1-/hsWKLGBtwAhXl/UI4n5i3E5KFc=, tarball: artifactory/api/npm/npm/raw-body/-/raw-body-2.5.1.tgz} + resolution: {integrity: sha1-/hsWKLGBtwAhXl/UI4n5i3E5KFc=} engines: {node: '>= 0.8'} dependencies: bytes: 3.1.2 @@ -6668,7 +6720,7 @@ packages: dev: false /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha1-IqrzhwjbJnTtmtoiTKSqcI2CHj0=, tarball: artifactory/api/npm/npm/react-dom/-/react-dom-18.2.0.tgz} + resolution: {integrity: sha1-IqrzhwjbJnTtmtoiTKSqcI2CHj0=} peerDependencies: react: ^18.2.0 dependencies: @@ -6686,21 +6738,21 @@ packages: dev: false /react-is@16.13.1: - resolution: {integrity: sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=, tarball: artifactory/api/npm/npm/react-is/-/react-is-16.13.1.tgz} + resolution: {integrity: sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=} /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} dev: true /react@18.2.0: - resolution: {integrity: sha1-VVvZhZKIMlX6AN4U8RUakXtdd9U=, tarball: artifactory/api/npm/npm/react/-/react-18.2.0.tgz} + resolution: {integrity: sha1-VVvZhZKIMlX6AN4U8RUakXtdd9U=} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 dev: false /readable-stream@2.3.6: - resolution: {integrity: sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8=, tarball: artifactory/api/npm/npm/readable-stream/-/readable-stream-2.3.6.tgz} + resolution: {integrity: sha1-sRwn2IuP8fvgcGQ8+UsMea4bCq8=} dependencies: core-util-is: 1.0.2 inherits: 2.0.4 @@ -6711,7 +6763,7 @@ packages: util-deprecate: 1.0.2 /readable-stream@3.6.0: - resolution: {integrity: sha1-M3u9o63AcGvT4CRCaihtS0sskZg=, tarball: artifactory/api/npm/npm/readable-stream/-/readable-stream-3.6.0.tgz} + resolution: {integrity: sha1-M3u9o63AcGvT4CRCaihtS0sskZg=} engines: {node: '>= 6'} dependencies: inherits: 2.0.4 @@ -6740,25 +6792,25 @@ packages: dev: true /regenerate-unicode-properties@10.1.0: - resolution: {integrity: sha1-fDGSyrbdJOIctEYeXd190k+oN0w=, tarball: artifactory/api/npm/npm/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz} + resolution: {integrity: sha1-fDGSyrbdJOIctEYeXd190k+oN0w=} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 dev: true /regenerate@1.4.2: - resolution: {integrity: sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=, tarball: artifactory/api/npm/npm/regenerate/-/regenerate-1.4.2.tgz} + resolution: {integrity: sha1-uTRtiCfo9aMve6KWN9OYtpAUhIo=} dev: true /regenerator-runtime@0.13.11: - resolution: {integrity: sha1-9tyj587sIFkNB62nhWNqkM3KF/k=, tarball: artifactory/api/npm/npm/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz} + resolution: {integrity: sha1-9tyj587sIFkNB62nhWNqkM3KF/k=} dev: true /regenerator-runtime@0.14.1: resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} /regenerator-transform@0.15.1: - resolution: {integrity: sha1-9sTpn8G0WR94DbJYYyjk2anY3FY=, tarball: artifactory/api/npm/npm/regenerator-transform/-/regenerator-transform-0.15.1.tgz} + resolution: {integrity: sha1-9sTpn8G0WR94DbJYYyjk2anY3FY=} dependencies: '@babel/runtime': 7.20.13 dev: true @@ -6783,12 +6835,12 @@ packages: dev: true /regexpp@3.2.0: - resolution: {integrity: sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=, tarball: artifactory/api/npm/npm/regexpp/-/regexpp-3.2.0.tgz} + resolution: {integrity: sha1-BCWido2PI7rXDKS5BGH6LxIT4bI=} engines: {node: '>=8'} dev: true /regexpu-core@5.2.2: - resolution: {integrity: sha1-Pk5dEhA7ZHSHEcOq1pk013GOdfw=, tarball: artifactory/api/npm/npm/regexpu-core/-/regexpu-core-5.2.2.tgz} + resolution: {integrity: sha1-Pk5dEhA7ZHSHEcOq1pk013GOdfw=} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -6800,22 +6852,22 @@ packages: dev: true /regjsgen@0.7.1: - resolution: {integrity: sha1-7l7zDhjT8Jt8Npt258I3PtJVRvY=, tarball: artifactory/api/npm/npm/regjsgen/-/regjsgen-0.7.1.tgz} + resolution: {integrity: sha1-7l7zDhjT8Jt8Npt258I3PtJVRvY=} dev: true /regjsparser@0.9.1: - resolution: {integrity: sha1-Jy0FqhDHwfZwlbH/Ct2uhEL8Vwk=, tarball: artifactory/api/npm/npm/regjsparser/-/regjsparser-0.9.1.tgz} + resolution: {integrity: sha1-Jy0FqhDHwfZwlbH/Ct2uhEL8Vwk=} hasBin: true dependencies: jsesc: 0.5.0 dev: true /remove-trailing-separator@1.1.0: - resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=, tarball: artifactory/api/npm/npm/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz} + resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=} dev: true /replace-ext@1.0.0: - resolution: {integrity: sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=, tarball: artifactory/api/npm/npm/replace-ext/-/replace-ext-1.0.0.tgz} + resolution: {integrity: sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=} engines: {node: '>= 0.10'} dev: true @@ -6832,7 +6884,7 @@ packages: dev: true /resolve-from@4.0.0: - resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=, tarball: artifactory/api/npm/npm/resolve-from/-/resolve-from-4.0.0.tgz} + resolution: {integrity: sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=} engines: {node: '>=4'} /resolve-from@5.0.0: @@ -6914,10 +6966,10 @@ packages: dev: true /safe-buffer@5.1.2: - resolution: {integrity: sha1-mR7GnSluAxN0fVm9/St0XDX4go0=, tarball: artifactory/api/npm/npm/safe-buffer/-/safe-buffer-5.1.2.tgz} + resolution: {integrity: sha1-mR7GnSluAxN0fVm9/St0XDX4go0=} /safe-buffer@5.2.1: - resolution: {integrity: sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=, tarball: artifactory/api/npm/npm/safe-buffer/-/safe-buffer-5.2.1.tgz} + resolution: {integrity: sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=} dev: false /safe-regex-test@1.0.0: @@ -6938,11 +6990,11 @@ packages: dev: true /safer-buffer@2.1.2: - resolution: {integrity: sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=, tarball: artifactory/api/npm/npm/safer-buffer/-/safer-buffer-2.1.2.tgz} + resolution: {integrity: sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=} dev: false /scheduler@0.23.0: - resolution: {integrity: sha1-uoBBr8PTDrIGpIe2s4QALk5h/f4=, tarball: artifactory/api/npm/npm/scheduler/-/scheduler-0.23.0.tgz} + resolution: {integrity: sha1-uoBBr8PTDrIGpIe2s4QALk5h/f4=} dependencies: loose-envify: 1.4.0 dev: false @@ -6950,6 +7002,7 @@ packages: /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true + dev: true /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} @@ -6964,7 +7017,7 @@ packages: lru-cache: 6.0.0 /send@0.18.0: - resolution: {integrity: sha1-ZwFnzGVLBfWqSnZ/kRO7NxvHBr4=, tarball: artifactory/api/npm/npm/send/-/send-0.18.0.tgz} + resolution: {integrity: sha1-ZwFnzGVLBfWqSnZ/kRO7NxvHBr4=} engines: {node: '>= 0.8.0'} dependencies: debug: 2.6.9 @@ -6985,7 +7038,7 @@ packages: dev: false /serve-static@1.15.0: - resolution: {integrity: sha1-+q7wjP/goaYvYMrQxOUTz/CslUA=, tarball: artifactory/api/npm/npm/serve-static/-/serve-static-1.15.0.tgz} + resolution: {integrity: sha1-+q7wjP/goaYvYMrQxOUTz/CslUA=} engines: {node: '>= 0.8.0'} dependencies: encodeurl: 1.0.2 @@ -7019,7 +7072,7 @@ packages: dev: true /setprototypeof@1.2.0: - resolution: {integrity: sha1-ZsmiSnP5/CjL5msJ/tPTPcrxtCQ=, tarball: artifactory/api/npm/npm/setprototypeof/-/setprototypeof-1.2.0.tgz} + resolution: {integrity: sha1-ZsmiSnP5/CjL5msJ/tPTPcrxtCQ=} dev: false /shebang-command@2.0.0: @@ -7035,7 +7088,7 @@ packages: dev: true /side-channel@1.0.4: - resolution: {integrity: sha1-785cj9wQTudRslxY1CkAEfpeos8=, tarball: artifactory/api/npm/npm/side-channel/-/side-channel-1.0.4.tgz} + resolution: {integrity: sha1-785cj9wQTudRslxY1CkAEfpeos8=} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.0 @@ -7062,7 +7115,7 @@ packages: dev: true /sort-by@1.2.0: - resolution: {integrity: sha1-7ZK7/5/SKEtB9lA+OElmB7Il/m8=, tarball: artifactory/api/npm/npm/sort-by/-/sort-by-1.2.0.tgz} + resolution: {integrity: sha1-7ZK7/5/SKEtB9lA+OElmB7Il/m8=} dependencies: object-path: 0.6.0 dev: false @@ -7084,12 +7137,12 @@ packages: dev: true /sourcemap-codec@1.4.8: - resolution: {integrity: sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=, tarball: artifactory/api/npm/npm/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz} + resolution: {integrity: sha1-6oBL2UhXQC5pktBaOO8a41qatMQ=} deprecated: Please use @jridgewell/sourcemap-codec instead dev: true /split2@3.2.2: - resolution: {integrity: sha1-vyzyo32DgxLCSciSBv16F90SNl8=, tarball: artifactory/api/npm/npm/split2/-/split2-3.2.2.tgz} + resolution: {integrity: sha1-vyzyo32DgxLCSciSBv16F90SNl8=} dependencies: readable-stream: 3.6.0 dev: false @@ -7099,7 +7152,7 @@ packages: dev: true /sri-toolbox@0.2.0: - resolution: {integrity: sha1-p/6lw/3lXmdc8cjAbz67XCk1g14=, tarball: artifactory/api/npm/npm/sri-toolbox/-/sri-toolbox-0.2.0.tgz} + resolution: {integrity: sha1-p/6lw/3lXmdc8cjAbz67XCk1g14=} engines: {node: '>= 0.10.4'} dev: false @@ -7111,12 +7164,12 @@ packages: dev: true /statuses@2.0.1: - resolution: {integrity: sha1-VcsADM8dSHKL0jxoWgY5mM8aG2M=, tarball: artifactory/api/npm/npm/statuses/-/statuses-2.0.1.tgz} + resolution: {integrity: sha1-VcsADM8dSHKL0jxoWgY5mM8aG2M=} engines: {node: '>= 0.8'} dev: false /stream-shift@1.0.0: - resolution: {integrity: sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=, tarball: artifactory/api/npm/npm/stream-shift/-/stream-shift-1.0.0.tgz} + resolution: {integrity: sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=} dev: false /streamx@2.16.1: @@ -7137,7 +7190,7 @@ packages: dev: true /string-natural-compare@3.0.1: - resolution: {integrity: sha1-ekLVhHRFSWN1no6LeuY9ccHn/fQ=, tarball: artifactory/api/npm/npm/string-natural-compare/-/string-natural-compare-3.0.1.tgz} + resolution: {integrity: sha1-ekLVhHRFSWN1no6LeuY9ccHn/fQ=} dev: true /string-width@4.2.3: @@ -7204,12 +7257,12 @@ packages: dev: true /string_decoder@1.1.1: - resolution: {integrity: sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=, tarball: artifactory/api/npm/npm/string_decoder/-/string_decoder-1.1.1.tgz} + resolution: {integrity: sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=} dependencies: safe-buffer: 5.1.2 /strip-ansi@6.0.1: - resolution: {integrity: sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=, tarball: artifactory/api/npm/npm/strip-ansi/-/strip-ansi-6.0.1.tgz} + resolution: {integrity: sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=} engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 @@ -7231,7 +7284,7 @@ packages: dev: true /strip-json-comments@3.1.1: - resolution: {integrity: sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=, tarball: artifactory/api/npm/npm/strip-json-comments/-/strip-json-comments-3.1.1.tgz} + resolution: {integrity: sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=} engines: {node: '>=8'} dev: true @@ -7274,7 +7327,7 @@ packages: has-flag: 3.0.0 /supports-color@7.2.0: - resolution: {integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=, tarball: artifactory/api/npm/npm/supports-color/-/supports-color-7.2.0.tgz} + resolution: {integrity: sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 @@ -7288,7 +7341,7 @@ packages: dev: true /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha1-btpL00SjyUrqN21MwxvHcxEDngk=, tarball: artifactory/api/npm/npm/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz} + resolution: {integrity: sha1-btpL00SjyUrqN21MwxvHcxEDngk=} engines: {node: '>= 0.4'} /tar-stream@3.1.7: @@ -7328,14 +7381,14 @@ packages: dev: true /through2@2.0.5: - resolution: {integrity: sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=, tarball: artifactory/api/npm/npm/through2/-/through2-2.0.5.tgz} + resolution: {integrity: sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=} dependencies: readable-stream: 2.3.6 xtend: 4.0.1 dev: false /through2@4.0.2: - resolution: {integrity: sha1-p846wqeosLlmyA58SfBITDsjl2Q=, tarball: artifactory/api/npm/npm/through2/-/through2-4.0.2.tgz} + resolution: {integrity: sha1-p846wqeosLlmyA58SfBITDsjl2Q=} dependencies: readable-stream: 3.6.0 dev: false @@ -7345,7 +7398,7 @@ packages: dev: true /to-fast-properties@2.0.0: - resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=, tarball: artifactory/api/npm/npm/to-fast-properties/-/to-fast-properties-2.0.0.tgz} + resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} engines: {node: '>=4'} /to-regex-range@5.0.1: @@ -7356,7 +7409,7 @@ packages: dev: true /toidentifier@1.0.1: - resolution: {integrity: sha1-O+NDIaiKgg7RvYDfqjPkefu43TU=, tarball: artifactory/api/npm/npm/toidentifier/-/toidentifier-1.0.1.tgz} + resolution: {integrity: sha1-O+NDIaiKgg7RvYDfqjPkefu43TU=} engines: {node: '>=0.6'} dev: false @@ -7397,11 +7450,11 @@ packages: dev: true /tslib@1.10.0: - resolution: {integrity: sha1-w8GflZc/sKYpc/sJ2Q2WHuQ+XIo=, tarball: artifactory/api/npm/npm/tslib/-/tslib-1.10.0.tgz} + resolution: {integrity: sha1-w8GflZc/sKYpc/sJ2Q2WHuQ+XIo=} dev: true /tsutils@3.21.0(typescript@5.3.3): - resolution: {integrity: sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=, tarball: artifactory/api/npm/npm/tsutils/-/tsutils-3.21.0.tgz} + resolution: {integrity: sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' @@ -7443,7 +7496,7 @@ packages: dev: false /type-is@1.6.18: - resolution: {integrity: sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=, tarball: artifactory/api/npm/npm/type-is/-/type-is-1.6.18.tgz} + resolution: {integrity: sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=} engines: {node: '>= 0.6'} dependencies: media-typer: 0.3.0 @@ -7510,12 +7563,12 @@ packages: dev: true /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=, tarball: artifactory/api/npm/npm/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz} + resolution: {integrity: sha1-MBrNxSVjFnDTn2FG4Od/9rvevdw=} engines: {node: '>=4'} dev: true /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=, tarball: artifactory/api/npm/npm/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz} + resolution: {integrity: sha1-VP0W4OyxZ88Ezx91a9zJLrp5dsM=} engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 @@ -7523,12 +7576,12 @@ packages: dev: true /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha1-y1//3NFqBRJPWksL98N3Agisu+A=, tarball: artifactory/api/npm/npm/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz} + resolution: {integrity: sha1-y1//3NFqBRJPWksL98N3Agisu+A=} engines: {node: '>=4'} dev: true /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha1-Q9QeO+aYvUk++REHfJsTH4J+jM0=, tarball: artifactory/api/npm/npm/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz} + resolution: {integrity: sha1-Q9QeO+aYvUk++REHfJsTH4J+jM0=} engines: {node: '>=4'} dev: true @@ -7540,12 +7593,12 @@ packages: dev: false /unpipe@1.0.0: - resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=, tarball: artifactory/api/npm/npm/unpipe/-/unpipe-1.0.0.tgz} + resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} engines: {node: '>= 0.8'} dev: false /update-browserslist-db@1.0.10(browserslist@4.21.5): - resolution: {integrity: sha1-D1S4dlRXJvF9AM2aJWHm2t6UP/M=, tarball: artifactory/api/npm/npm/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz} + resolution: {integrity: sha1-D1S4dlRXJvF9AM2aJWHm2t6UP/M=} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -7553,6 +7606,7 @@ packages: browserslist: 4.21.5 escalade: 3.1.1 picocolors: 1.0.0 + dev: true /update-browserslist-db@1.0.13(browserslist@4.23.0): resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} @@ -7572,15 +7626,15 @@ packages: dev: true /util-deprecate@1.0.2: - resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=, tarball: artifactory/api/npm/npm/util-deprecate/-/util-deprecate-1.0.2.tgz} + resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} /utils-merge@1.0.1: - resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=, tarball: artifactory/api/npm/npm/utils-merge/-/utils-merge-1.0.1.tgz} + resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} engines: {node: '>= 0.4.0'} dev: false /uuid@8.1.0: - resolution: {integrity: sha1-bxU260Mkn0c6vGvVj/mD2hyjDY0=, tarball: artifactory/api/npm/npm/uuid/-/uuid-8.1.0.tgz} + resolution: {integrity: sha1-bxU260Mkn0c6vGvVj/mD2hyjDY0=} hasBin: true dev: true @@ -7594,25 +7648,25 @@ packages: dev: true /validate-npm-package-name@5.0.0: - resolution: {integrity: sha1-8Wr9SDGOb5Ch7BATd/oDhM/IxxM=, tarball: artifactory/api/npm/npm/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz} + resolution: {integrity: sha1-8Wr9SDGOb5Ch7BATd/oDhM/IxxM=} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: builtins: 5.0.1 dev: false /vary@1.1.2: - resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=, tarball: artifactory/api/npm/npm/vary/-/vary-1.1.2.tgz} + resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} engines: {node: '>= 0.8'} dev: false /vinyl-sourcemaps-apply@0.2.1: - resolution: {integrity: sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=, tarball: artifactory/api/npm/npm/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz} + resolution: {integrity: sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=} dependencies: source-map: 0.5.7 dev: true /vinyl@2.2.0: - resolution: {integrity: sha1-2FsH2pbkWNJbL/4Z/s6fLKoT7YY=, tarball: artifactory/api/npm/npm/vinyl/-/vinyl-2.2.0.tgz} + resolution: {integrity: sha1-2FsH2pbkWNJbL/4Z/s6fLKoT7YY=} engines: {node: '>= 0.10'} dependencies: clone: 2.1.2 @@ -7630,7 +7684,7 @@ packages: dev: true /warning@4.0.3: - resolution: {integrity: sha1-Fungd+uKhtavfWSqHgX9hbRnjKM=, tarball: artifactory/api/npm/npm/warning/-/warning-4.0.3.tgz} + resolution: {integrity: sha1-Fungd+uKhtavfWSqHgX9hbRnjKM=} dependencies: loose-envify: 1.4.0 dev: false @@ -7645,7 +7699,7 @@ packages: dev: false /whatwg-fetch@3.6.2: - resolution: {integrity: sha1-3O0k838mJO0CgXJdUdDi4/5nf4w=, tarball: artifactory/api/npm/npm/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz} + resolution: {integrity: sha1-3O0k838mJO0CgXJdUdDi4/5nf4w=} dev: false /whatwg-url@14.0.0: @@ -7741,7 +7795,7 @@ packages: dev: true /wrappy@1.0.2: - resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=, tarball: artifactory/api/npm/npm/wrappy/-/wrappy-1.0.2.tgz} + resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} /write-file-atomic@4.0.2: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} @@ -7752,7 +7806,7 @@ packages: dev: true /xtend@4.0.1: - resolution: {integrity: sha1-pcbVMr5lbiPbgg77lDofBJmNY68=, tarball: artifactory/api/npm/npm/xtend/-/xtend-4.0.1.tgz} + resolution: {integrity: sha1-pcbVMr5lbiPbgg77lDofBJmNY68=} engines: {node: '>=0.4'} dev: false @@ -7762,13 +7816,14 @@ packages: dev: true /yallist@3.0.3: - resolution: {integrity: sha1-tLBJ4xS+VF486AIjbWzSLNkcPek=, tarball: artifactory/api/npm/npm/yallist/-/yallist-3.0.3.tgz} + resolution: {integrity: sha1-tLBJ4xS+VF486AIjbWzSLNkcPek=} + dev: true /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} /yaml@1.10.2: - resolution: {integrity: sha1-IwHF/78StGfejaIzOkWeKeeSDks=, tarball: artifactory/api/npm/npm/yaml/-/yaml-1.10.2.tgz} + resolution: {integrity: sha1-IwHF/78StGfejaIzOkWeKeeSDks=} engines: {node: '>= 6'} /yargs-parser@21.1.1: @@ -7790,6 +7845,6 @@ packages: dev: true /yocto-queue@0.1.0: - resolution: {integrity: sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=, tarball: artifactory/api/npm/npm/yocto-queue/-/yocto-queue-0.1.0.tgz} + resolution: {integrity: sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=} engines: {node: '>=10'} dev: true