Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 722750c1 0313a9f5

+976 -882
-2
nixos/modules/virtualisation/hyperv-guest.nix
··· 56 56 systemd = { 57 57 packages = [ config.boot.kernelPackages.hyperv-daemons.lib ]; 58 58 59 - services.hv-vss.unitConfig.ConditionPathExists = [ "/dev/vmbus/hv_vss" ]; 60 - 61 59 targets.hyperv-daemons = { 62 60 wantedBy = [ "multi-user.target" ]; 63 61 };
+1
nixos/tests/ntfy-sh.nix
··· 1 1 import ./make-test-python.nix { 2 + name = "ntfy-sh"; 2 3 3 4 nodes.machine = { ... }: { 4 5 services.ntfy-sh.enable = true;
+4 -1
pkgs/applications/editors/vim/plugins/nvim-treesitter/overrides.nix
··· 94 94 ''; 95 95 }; 96 96 97 - meta.maintainers = with lib.maintainers; [ figsoda ]; 97 + meta = with lib; (super.nvim-treesitter.meta or { }) // { 98 + license = licenses.asl20; 99 + maintainers = with maintainers; [ figsoda ]; 100 + }; 98 101 }
+1 -1
pkgs/build-support/trivial-builders.nix
··· 305 305 if checkPhase == null then '' 306 306 runHook preCheck 307 307 ${stdenv.shellDryRun} "$target" 308 - ${shellcheck}/bin/shellcheck "$target" 308 + ${shellcheck.unwrapped}/bin/shellcheck "$target" 309 309 runHook postCheck 310 310 '' 311 311 else checkPhase;
+2 -2
pkgs/development/python-modules/ailment/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ailment"; 11 - version = "9.2.28"; 11 + version = "9.2.29"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - hash = "sha256-6+3lZygQEezEbGIMbB6NINjVDkgt5sYO2FV5wpienuY="; 20 + hash = "sha256-Yso47p4d8buJTdXOrm7luvtxpFu+oTFhqTBueQaXqII="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+33
pkgs/development/python-modules/aiohttp-openmetrics/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , aiohttp 5 + , prometheus-client 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "aiohttp-openmetrics"; 10 + version = "0.0.11"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "sha256-GIVUkjyn+iQSMZZ6dNmmimvbt+t+uxOYv2QEDk/dA+g="; 15 + }; 16 + 17 + propagatedBuildInputs = [ 18 + aiohttp 19 + prometheus-client 20 + ]; 21 + 22 + # no tests 23 + doCheck = false; 24 + 25 + pythonImportsCheck = [ "aiohttp_openmetrics" ]; 26 + 27 + meta = with lib; { 28 + description = "OpenMetrics provider for aiohttp"; 29 + homepage = "https://github.com/jelmer/aiohttp-openmetrics/"; 30 + license = licenses.asl20; 31 + maintainers = with maintainers; [ ]; 32 + }; 33 + }
+2 -2
pkgs/development/python-modules/angr/default.nix
··· 31 31 32 32 buildPythonPackage rec { 33 33 pname = "angr"; 34 - version = "9.2.28"; 34 + version = "9.2.29"; 35 35 format = "pyproject"; 36 36 37 37 disabled = pythonOlder "3.8"; ··· 40 40 owner = pname; 41 41 repo = pname; 42 42 rev = "v${version}"; 43 - hash = "sha256-16/hocVfd2RI8qQ9Qt7EM/gGfyGpWabyZhtfwOscqQY="; 43 + hash = "sha256-cAruoJhQpxK/+sRcyoLoBlG35b11UV2Tjwt2+QUx46E="; 44 44 }; 45 45 46 46 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/archinfo/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "archinfo"; 11 - version = "9.2.28"; 11 + version = "9.2.29"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "angr"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - hash = "sha256-LUrLO9BFbpB2p6PtTZPdpLsGHPh088aPHIyoxgv4dGg="; 20 + hash = "sha256-kS7NTlZnWwcvuRV/Eq3K0MJ/bGYcR5BWIbdPONuTqII="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/claripy/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "claripy"; 18 - version = "9.2.28"; 18 + version = "9.2.29"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "angr"; 25 25 repo = pname; 26 26 rev = "v${version}"; 27 - hash = "sha256-CGYX8IzVBqhF0IenTFKtx79J81X6UGkvm/XvFovnHYE="; 27 + hash = "sha256-X2c1TVbf/KTUOfjQ8Izt+vyxhQrAki3hCBBwKxgkxbw="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/cle/default.nix
··· 16 16 17 17 let 18 18 # The binaries are following the argr projects release cycle 19 - version = "9.2.28"; 19 + version = "9.2.29"; 20 20 21 21 # Binary files from https://github.com/angr/binaries (only used for testing and only here) 22 22 binaries = fetchFromGitHub { ··· 38 38 owner = "angr"; 39 39 repo = pname; 40 40 rev = "v${version}"; 41 - hash = "sha256-t3TO1rHf5iA+9WW3Adi37fL7XjRUZFPowUWchX9eEVI="; 41 + hash = "sha256-fK0j6+UqQVadQPU34oLp50gB+/0YnNnNg/rGuIt5I54="; 42 42 }; 43 43 44 44 nativeBuildInputs = [
+3 -2
pkgs/development/python-modules/geopandas/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "geopandas"; 17 - version = "0.12.1"; 17 + version = "0.12.2"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.8"; ··· 23 23 owner = "geopandas"; 24 24 repo = "geopandas"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-aLERNVojPgZ3Y7+CnirGvC4RfuQf+K3Oj2/0BqdorwI="; 26 + hash = "sha256-ntOZ2WCoMz5ZpqPeupqPC3cN8mbQmEAvJGaFblu0ibY="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [ ··· 62 62 meta = with lib; { 63 63 description = "Python geospatial data analysis framework"; 64 64 homepage = "https://geopandas.org"; 65 + changelog = "https://github.com/geopandas/geopandas/blob/v${version}/CHANGELOG.md"; 65 66 license = licenses.bsd3; 66 67 maintainers = with maintainers; [ knedlsepp ]; 67 68 };
+8 -3
pkgs/development/python-modules/jedi/default.nix
··· 3 3 , buildPythonPackage 4 4 , pythonOlder 5 5 , fetchFromGitHub 6 + , attrs 6 7 , django 7 8 , pytestCheckHook 8 9 , parso ··· 10 11 11 12 buildPythonPackage rec { 12 13 pname = "jedi"; 13 - version = "0.18.1"; 14 + version = "0.18.2"; 15 + format = "setuptools"; 16 + 14 17 disabled = pythonOlder "3.6"; 15 18 16 19 src = fetchFromGitHub { 17 20 owner = "davidhalter"; 18 21 repo = "jedi"; 19 22 rev = "v${version}"; 20 - sha256 = "sha256-wWNPNi16WtefvB7GcQBnWMbHVlVzxSFs4TKRqEasuR0="; 23 + hash = "sha256-hNRmUFpRzVKJQAtfsSNV4jeTR8vVj1+mGBIPO6tUGto="; 21 24 fetchSubmodules = true; 22 25 }; 23 26 24 27 propagatedBuildInputs = [ parso ]; 25 28 26 29 checkInputs = [ 30 + attrs 27 31 django 28 32 pytestCheckHook 29 33 ]; ··· 44 48 ]; 45 49 46 50 meta = with lib; { 51 + description = "An autocompletion tool for Python that can be used for text editors"; 47 52 homepage = "https://github.com/davidhalter/jedi"; 48 - description = "An autocompletion tool for Python that can be used for text editors"; 53 + changelog = "https://github.com/davidhalter/jedi/blob/${version}/CHANGELOG.rst"; 49 54 license = licenses.mit; 50 55 maintainers = with maintainers; [ ]; 51 56 };
+2 -2
pkgs/development/python-modules/line_profiler/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "line-profiler"; 16 - version = "4.0.1"; 16 + version = "4.0.2"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.6" || isPyPy; ··· 21 21 src = fetchPypi { 22 22 pname = "line_profiler"; 23 23 inherit version; 24 - hash = "sha256-eXlt/5BUxtIZDnRz3umqXqkYqDcgYX5+goSzwBmneek="; 24 + hash = "sha256-JejJ1CSNxIkFgBhR/4p1ucdIJ6CHHRGNEQTY5D1/sPw="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/mautrix/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "mautrix"; 15 - version = "0.18.8"; 15 + version = "0.18.9"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.8"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-DRJhqHpeGbDzqhym6z9wCmzTz3VpnwJMdDKFT5vMVUE="; 22 + hash = "sha256-Ihaz/izB9L6osu3CPwBWOwLZ2JOLKhsDuqOUf/B02qI="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "meshtastic"; 21 - version = "2.0.5"; 21 + version = "2.0.6"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "meshtastic"; 28 28 repo = "Meshtastic-python"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-wzDi4C/XUykoTxgoDneQzWplTlo0bGUODM38Eza4fUY="; 30 + hash = "sha256-PN09TaJZR/REQPIgrm9XR+mXvR1evMAWGQziAzpg+fE="; 31 31 }; 32 32 33 33 propagatedBuildInputs = [
+19 -3
pkgs/development/python-modules/metakernel/default.nix
··· 3 3 , fetchPypi 4 4 , hatchling 5 5 , ipykernel 6 + , jedi 7 + , jupyter_core 8 + , pexpect 9 + , pythonOlder 6 10 }: 7 11 8 12 buildPythonPackage rec { 9 13 pname = "metakernel"; 10 - version = "0.29.2"; 14 + version = "0.29.4"; 11 15 format = "pyproject"; 12 16 17 + disabled = pythonOlder "3.7"; 18 + 13 19 src = fetchPypi { 14 20 inherit pname version; 15 - sha256 = "sha256-A++uLR4hhOQYmA6o9wBTejFju3CpbK0hwIs7XFscddQ="; 21 + hash = "sha256-kxrF/Msxjht7zGs0aEcL/Sf0qwcLiSoDPDUlE7Lrcmg="; 16 22 }; 17 23 18 24 nativeBuildInputs = [ 19 25 hatchling 20 26 ]; 21 27 22 - propagatedBuildInputs = [ ipykernel ]; 28 + propagatedBuildInputs = [ 29 + ipykernel 30 + jedi 31 + jupyter_core 32 + pexpect 33 + ]; 23 34 24 35 # Tests hang, so disable 25 36 doCheck = false; 26 37 38 + pythonImportsCheck = [ 39 + "metakernel" 40 + ]; 41 + 27 42 meta = with lib; { 28 43 description = "Jupyter/IPython Kernel Tools"; 29 44 homepage = "https://github.com/Calysto/metakernel"; 45 + changelog = "https://github.com/Calysto/metakernel/blob/v${version}/CHANGELOG.md"; 30 46 license = licenses.bsd3; 31 47 maintainers = with maintainers; [ thomasjm ]; 32 48 };
+2 -2
pkgs/development/python-modules/moderngl/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "moderngl"; 12 - version = "5.7.3"; 12 + version = "5.7.4"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-fi7pauMSUSGkSI2ifPg/q1MiApyUg1j2OERcuq20ncQ="; 19 + hash = "sha256-IPghv2aygRvIZI189/ZEAq//dhn+onH0Km7oX+A+QEE="; 20 20 }; 21 21 22 22 buildInputs = [
+3 -2
pkgs/development/python-modules/omegaconf/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "omegaconf"; 15 - version = "2.2.3"; 15 + version = "2.3.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.6"; ··· 21 21 owner = "omry"; 22 22 repo = pname; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-sJUYi0M/6SBSeKVSJoNY7IbVmzRZVTlek8AyL2cOPAM="; 24 + hash = "sha256-Qxa4uIiX5TAyQ5rFkizdev60S4iVAJ08ES6FpNqf8zI="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ ··· 46 46 meta = with lib; { 47 47 description = "Framework for configuring complex applications"; 48 48 homepage = "https://github.com/omry/omegaconf"; 49 + changelog = "https://github.com/omry/omegaconf/blob/v${version}/NEWS.md"; 49 50 license = licenses.bsd3; 50 51 maintainers = with maintainers; [ bcdarwin ]; 51 52 };
+24 -7
pkgs/development/python-modules/py-vapid/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , flake8, mock, nose, pytest 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , flake8 5 + , mock 6 + , nose 7 + , pytest 3 8 , cryptography 9 + , pythonOlder 4 10 }: 5 11 6 12 buildPythonPackage rec { 7 13 pname = "py-vapid"; 8 - version = "1.8.2"; 14 + version = "1.9.0"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 9 18 10 19 src = fetchPypi { 11 20 inherit pname version; 12 - sha256 = "874f21910f2103c56228cded941d6e733dd8f1eb12876137919533bfacb65a48"; 21 + hash = "sha256-BmSreJl0LvKyhzl6TUYe9pHtDML1hyBRKNjPYX/9uRk="; 13 22 }; 14 23 15 - propagatedBuildInputs = [ cryptography ]; 24 + propagatedBuildInputs = [ 25 + cryptography 26 + ]; 16 27 17 - checkInputs = [ flake8 mock nose pytest ]; 28 + checkInputs = [ 29 + flake8 30 + mock 31 + nose 32 + pytest 33 + ]; 18 34 19 35 meta = with lib; { 20 - description = "VAPID is a voluntary standard for WebPush subscription providers"; 36 + description = "Library for VAPID header generation"; 21 37 homepage = "https://github.com/mozilla-services/vapid"; 22 38 license = licenses.mpl20; 39 + maintainers = with maintainers; [ ]; 23 40 }; 24 41 }
+4 -3
pkgs/development/python-modules/pytest-remotedata/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pytest-remotedata"; 13 - version = "0.3.3"; 13 + version = "0.4.0"; 14 14 format = "setuptools"; 15 15 16 - disabled = pythonOlder "3.6"; 16 + disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "66920bf1c62928b079d0e611379111a0d49f10a9509ced54c8269514ccce6ee3"; 20 + hash = "sha256-viHFWONNfBGw9q61CVbAlSC//NArf86cb46FMaQBocg="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 48 48 meta = with lib; { 49 49 description = "Pytest plugin for controlling remote data access"; 50 50 homepage = "https://github.com/astropy/pytest-remotedata"; 51 + changelog = "https://github.com/astropy/pytest-remotedata/blob/v${version}/CHANGES.rst"; 51 52 license = licenses.bsd3; 52 53 maintainers = with maintainers; [ costrouc ]; 53 54 };
+2 -2
pkgs/development/python-modules/pyvex/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pyvex"; 16 - version = "9.2.28"; 16 + version = "9.2.29"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-fDsJqilxIt/LApXVrTm3JyOrZ6BR0+IbnFux/huF2ZU="; 23 + hash = "sha256-buqtEiifBKbR7FP08ne5v0nWqkO+d2cVHxNCCZJDrdU="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/tools/open-policy-agent/default.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "open-policy-agent"; 14 - version = "0.47.2"; 14 + version = "0.47.3"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "open-policy-agent"; 18 18 repo = "opa"; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-OAL7sYR4SFFQbRhVTx3NAQiDTr5l/4ejtFTVnT1idCU="; 20 + sha256 = "sha256-c82v/4+HdBLNsJM1kO6A6rfywU4J7a3h5LW/T731vxw="; 21 21 }; 22 22 vendorSha256 = null; 23 23
+5
pkgs/development/tools/shellcheck/default.nix
··· 37 37 install -Dm644 shellcheck.1 $man/share/man/man1/shellcheck.1 38 38 mkdir $out 39 39 ''; 40 + 41 + passthru = ShellCheck.passthru or {} // { 42 + # pandoc takes long to build and documentation isn't needed for in nixpkgs usage 43 + unwrapped = ShellCheck; 44 + }; 40 45 }; 41 46 42 47 in
+3
pkgs/games/minetest/default.nix
··· 113 113 mkdir -pv $out/share/minetest/games/minetest_game/ 114 114 cp -rv ${sources.data}/* $out/share/minetest/games/minetest_game/ 115 115 patchShebangs $out 116 + '' + lib.optionalString stdenv.isDarwin '' 117 + mkdir -p $out/Applications 118 + mv $out/minetest.app $out/Applications 116 119 ''; 117 120 118 121 meta = with lib; {
+3 -3
pkgs/os-specific/linux/hyperv-daemons/default.nix
··· 73 73 buildCommand = '' 74 74 system=$lib/lib/systemd/system 75 75 76 - install -Dm444 ${service "fcopy" "file copy (FCOPY)" "hv_fcopy" } $system/hv-fcopy.service 77 - install -Dm444 ${service "kvp" "key-value pair (KVP)" "" } $system/hv-kvp.service 78 - install -Dm444 ${service "vss" "volume shadow copy (VSS)" "" } $system/hv-vss.service 76 + install -Dm444 ${service "fcopy" "file copy (FCOPY)" "hv_fcopy" } $system/hv-fcopy.service 77 + install -Dm444 ${service "kvp" "key-value pair (KVP)" "hv_kvp" } $system/hv-kvp.service 78 + install -Dm444 ${service "vss" "volume shadow copy (VSS)" "hv_vss" } $system/hv-vss.service 79 79 80 80 cat > $system/hyperv-daemons.target <<EOF 81 81 [Unit]
+12 -2
pkgs/servers/monitoring/prometheus/xmpp-alerts.nix
··· 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "prometheus-xmpp-alerts"; 9 - version = "0.5.3"; 9 + version = "0.5.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "jelmer"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-gb7lFRqqw4w/B+Sw0iteDkuGsPfw/ZZ+sRMTu5vxIUo="; 15 + sha256 = "sha256-PwShGS1rbfZCK5OS6Cnn+mduOpWAD4fC69mcGB5GB1c="; 16 16 }; 17 17 18 + postPatch = '' 19 + substituteInPlace setup.cfg \ 20 + --replace "bs4" "beautifulsoup4" 21 + ''; 22 + 18 23 propagatedBuildInputs = [ 19 24 prometheus-alertmanager 20 25 ] ++ (with python3Packages; [ 21 26 aiohttp 27 + aiohttp-openmetrics 28 + beautifulsoup4 29 + jinja2 22 30 slixmpp 23 31 prometheus-client 24 32 pyyaml ··· 28 36 unittestCheckHook 29 37 pytz 30 38 ]; 39 + 40 + pythonImportsCheck = [ "prometheus_xmpp" ]; 31 41 32 42 meta = { 33 43 description = "XMPP Web hook for Prometheus";
+12 -5
pkgs/tools/misc/ntfy-sh/default.nix
··· 1 - { lib, pkgs, nodejs, stdenv, buildGoModule, fetchFromGitHub, debianutils, mkdocs, python3, python3Packages }: 1 + { lib, pkgs, stdenv, buildGoModule, fetchFromGitHub, nixosTests 2 + , nodejs, debianutils, mkdocs, python3, python3Packages }: 3 + 2 4 3 5 let 4 6 nodeDependencies = (import ./node-composition.nix { ··· 8 10 in 9 11 buildGoModule rec { 10 12 pname = "ntfy-sh"; 11 - version = "1.28.0"; 13 + version = "1.29.1"; 12 14 13 15 src = fetchFromGitHub { 14 16 owner = "binwiederhier"; 15 17 repo = "ntfy"; 16 18 rev = "v${version}"; 17 - sha256 = "sha256-pDKeG0Q4cG+UoxpBawHOtO8xVXXxo0Z7nyY2nZSSFvc="; 19 + sha256 = "sha256-ikXhST+fvXu7FBeoYMzPq2LhpAw3gfaES1WlhnRO8BY="; 18 20 }; 19 21 20 - vendorSha256 = "sha256-oMZCjrCsq6aRxcdF6jQK51sZqOjbrdlbofSQvGO/POg="; 22 + vendorSha256 = "sha256-VVqaQFluqV77/+Asu9xSBpCvoYr276UE3Yg+iNkxP0o="; 21 23 22 24 doCheck = false; 23 25 ··· 41 43 DISABLE_ESLINT_PLUGIN=true npm_config_offline=true make web-build docs-build 42 44 ''; 43 45 46 + passthru = { 47 + updateScript = ./update.sh; 48 + tests.ntfy-sh = nixosTests.ntfy-sh; 49 + }; 50 + 44 51 meta = with lib; { 45 52 description = "Send push notifications to your phone or desktop via PUT/POST"; 46 53 homepage = "https://ntfy.sh"; 47 54 license = licenses.asl20; 48 - maintainers = with maintainers; [ arjan-s ]; 55 + maintainers = with maintainers; [ arjan-s fpletz ]; 49 56 }; 50 57 }
+814 -823
pkgs/tools/misc/ntfy-sh/node-packages.nix
··· 31 31 sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; 32 32 }; 33 33 }; 34 - "@babel/compat-data-7.19.1" = { 34 + "@babel/compat-data-7.20.1" = { 35 35 name = "_at_babel_slash_compat-data"; 36 36 packageName = "@babel/compat-data"; 37 - version = "7.19.1"; 37 + version = "7.20.1"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.1.tgz"; 40 - sha512 = "72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg=="; 39 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz"; 40 + sha512 = "EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ=="; 41 41 }; 42 42 }; 43 - "@babel/core-7.19.1" = { 43 + "@babel/core-7.20.2" = { 44 44 name = "_at_babel_slash_core"; 45 45 packageName = "@babel/core"; 46 - version = "7.19.1"; 46 + version = "7.20.2"; 47 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/core/-/core-7.19.1.tgz"; 49 - sha512 = "1H8VgqXme4UXCRv7/Wa1bq7RVymKOzC7znjyFM8KiEzwFqcKUKYNoQef4GhdklgNvoBXyW4gYhuBNCM5o1zImw=="; 48 + url = "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz"; 49 + sha512 = "w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g=="; 50 50 }; 51 51 }; 52 52 "@babel/eslint-parser-7.19.1" = { ··· 58 58 sha512 = "AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ=="; 59 59 }; 60 60 }; 61 - "@babel/generator-7.19.0" = { 61 + "@babel/generator-7.20.4" = { 62 62 name = "_at_babel_slash_generator"; 63 63 packageName = "@babel/generator"; 64 - version = "7.19.0"; 64 + version = "7.20.4"; 65 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.19.0.tgz"; 67 - sha512 = "S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg=="; 66 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz"; 67 + sha512 = "luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA=="; 68 68 }; 69 69 }; 70 70 "@babel/helper-annotate-as-pure-7.18.6" = { ··· 85 85 sha512 = "yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw=="; 86 86 }; 87 87 }; 88 - "@babel/helper-compilation-targets-7.19.1" = { 88 + "@babel/helper-compilation-targets-7.20.0" = { 89 89 name = "_at_babel_slash_helper-compilation-targets"; 90 90 packageName = "@babel/helper-compilation-targets"; 91 - version = "7.19.1"; 91 + version = "7.20.0"; 92 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.1.tgz"; 94 - sha512 = "LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg=="; 93 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz"; 94 + sha512 = "0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ=="; 95 95 }; 96 96 }; 97 - "@babel/helper-create-class-features-plugin-7.19.0" = { 97 + "@babel/helper-create-class-features-plugin-7.20.2" = { 98 98 name = "_at_babel_slash_helper-create-class-features-plugin"; 99 99 packageName = "@babel/helper-create-class-features-plugin"; 100 - version = "7.19.0"; 100 + version = "7.20.2"; 101 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz"; 103 - sha512 = "NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw=="; 102 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz"; 103 + sha512 = "k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA=="; 104 104 }; 105 105 }; 106 106 "@babel/helper-create-regexp-features-plugin-7.19.0" = { ··· 175 175 sha512 = "0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="; 176 176 }; 177 177 }; 178 - "@babel/helper-module-transforms-7.19.0" = { 178 + "@babel/helper-module-transforms-7.20.2" = { 179 179 name = "_at_babel_slash_helper-module-transforms"; 180 180 packageName = "@babel/helper-module-transforms"; 181 - version = "7.19.0"; 181 + version = "7.20.2"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz"; 184 - sha512 = "3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ=="; 183 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz"; 184 + sha512 = "zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA=="; 185 185 }; 186 186 }; 187 187 "@babel/helper-optimise-call-expression-7.18.6" = { ··· 193 193 sha512 = "HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA=="; 194 194 }; 195 195 }; 196 - "@babel/helper-plugin-utils-7.19.0" = { 196 + "@babel/helper-plugin-utils-7.20.2" = { 197 197 name = "_at_babel_slash_helper-plugin-utils"; 198 198 packageName = "@babel/helper-plugin-utils"; 199 - version = "7.19.0"; 199 + version = "7.20.2"; 200 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz"; 202 - sha512 = "40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw=="; 201 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz"; 202 + sha512 = "8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ=="; 203 203 }; 204 204 }; 205 205 "@babel/helper-remap-async-to-generator-7.18.9" = { ··· 220 220 sha512 = "T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw=="; 221 221 }; 222 222 }; 223 - "@babel/helper-simple-access-7.18.6" = { 223 + "@babel/helper-simple-access-7.20.2" = { 224 224 name = "_at_babel_slash_helper-simple-access"; 225 225 packageName = "@babel/helper-simple-access"; 226 - version = "7.18.6"; 226 + version = "7.20.2"; 227 227 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz"; 229 - sha512 = "iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g=="; 228 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz"; 229 + sha512 = "+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA=="; 230 230 }; 231 231 }; 232 - "@babel/helper-skip-transparent-expression-wrappers-7.18.9" = { 232 + "@babel/helper-skip-transparent-expression-wrappers-7.20.0" = { 233 233 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 234 234 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 235 - version = "7.18.9"; 235 + version = "7.20.0"; 236 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz"; 238 - sha512 = "imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw=="; 237 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz"; 238 + sha512 = "5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg=="; 239 239 }; 240 240 }; 241 241 "@babel/helper-split-export-declaration-7.18.6" = { ··· 247 247 sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; 248 248 }; 249 249 }; 250 - "@babel/helper-string-parser-7.18.10" = { 250 + "@babel/helper-string-parser-7.19.4" = { 251 251 name = "_at_babel_slash_helper-string-parser"; 252 252 packageName = "@babel/helper-string-parser"; 253 - version = "7.18.10"; 253 + version = "7.19.4"; 254 254 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz"; 256 - sha512 = "XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="; 255 + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"; 256 + sha512 = "nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="; 257 257 }; 258 258 }; 259 259 "@babel/helper-validator-identifier-7.19.1" = { ··· 283 283 sha512 = "txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg=="; 284 284 }; 285 285 }; 286 - "@babel/helpers-7.19.0" = { 286 + "@babel/helpers-7.20.1" = { 287 287 name = "_at_babel_slash_helpers"; 288 288 packageName = "@babel/helpers"; 289 - version = "7.19.0"; 289 + version = "7.20.1"; 290 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz"; 292 - sha512 = "DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg=="; 291 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz"; 292 + sha512 = "J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg=="; 293 293 }; 294 294 }; 295 295 "@babel/highlight-7.18.6" = { ··· 301 301 sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 302 302 }; 303 303 }; 304 - "@babel/parser-7.19.1" = { 304 + "@babel/parser-7.20.3" = { 305 305 name = "_at_babel_slash_parser"; 306 306 packageName = "@babel/parser"; 307 - version = "7.19.1"; 307 + version = "7.20.3"; 308 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz"; 310 - sha512 = "h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A=="; 309 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz"; 310 + sha512 = "OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg=="; 311 311 }; 312 312 }; 313 313 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" = { ··· 328 328 sha512 = "AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg=="; 329 329 }; 330 330 }; 331 - "@babel/plugin-proposal-async-generator-functions-7.19.1" = { 331 + "@babel/plugin-proposal-async-generator-functions-7.20.1" = { 332 332 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 333 333 packageName = "@babel/plugin-proposal-async-generator-functions"; 334 - version = "7.19.1"; 334 + version = "7.20.1"; 335 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz"; 337 - sha512 = "0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q=="; 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz"; 337 + sha512 = "Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g=="; 338 338 }; 339 339 }; 340 340 "@babel/plugin-proposal-class-properties-7.18.6" = { ··· 355 355 sha512 = "+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw=="; 356 356 }; 357 357 }; 358 - "@babel/plugin-proposal-decorators-7.19.1" = { 358 + "@babel/plugin-proposal-decorators-7.20.2" = { 359 359 name = "_at_babel_slash_plugin-proposal-decorators"; 360 360 packageName = "@babel/plugin-proposal-decorators"; 361 - version = "7.19.1"; 361 + version = "7.20.2"; 362 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.19.1.tgz"; 364 - sha512 = "LfIKNBBY7Q1OX5C4xAgRQffOg2OnhAo9fnbcOHgOC9Yytm2Sw+4XqHufRYU86tHomzepxtvuVaNO+3EVKR4ivw=="; 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.20.2.tgz"; 364 + sha512 = "nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw=="; 365 365 }; 366 366 }; 367 367 "@babel/plugin-proposal-dynamic-import-7.18.6" = { ··· 418 418 sha512 = "ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q=="; 419 419 }; 420 420 }; 421 - "@babel/plugin-proposal-object-rest-spread-7.18.9" = { 421 + "@babel/plugin-proposal-object-rest-spread-7.20.2" = { 422 422 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 423 423 packageName = "@babel/plugin-proposal-object-rest-spread"; 424 - version = "7.18.9"; 424 + version = "7.20.2"; 425 425 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz"; 427 - sha512 = "kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q=="; 426 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz"; 427 + sha512 = "Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ=="; 428 428 }; 429 429 }; 430 430 "@babel/plugin-proposal-optional-catch-binding-7.18.6" = { ··· 544 544 sha512 = "LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A=="; 545 545 }; 546 546 }; 547 - "@babel/plugin-syntax-import-assertions-7.18.6" = { 547 + "@babel/plugin-syntax-import-assertions-7.20.0" = { 548 548 name = "_at_babel_slash_plugin-syntax-import-assertions"; 549 549 packageName = "@babel/plugin-syntax-import-assertions"; 550 - version = "7.18.6"; 550 + version = "7.20.0"; 551 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz"; 553 - sha512 = "/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ=="; 552 + url = "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz"; 553 + sha512 = "IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ=="; 554 554 }; 555 555 }; 556 556 "@babel/plugin-syntax-import-meta-7.10.4" = { ··· 652 652 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 653 653 }; 654 654 }; 655 - "@babel/plugin-syntax-typescript-7.18.6" = { 655 + "@babel/plugin-syntax-typescript-7.20.0" = { 656 656 name = "_at_babel_slash_plugin-syntax-typescript"; 657 657 packageName = "@babel/plugin-syntax-typescript"; 658 - version = "7.18.6"; 658 + version = "7.20.0"; 659 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz"; 661 - sha512 = "mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA=="; 660 + url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz"; 661 + sha512 = "rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ=="; 662 662 }; 663 663 }; 664 664 "@babel/plugin-transform-arrow-functions-7.18.6" = { ··· 688 688 sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; 689 689 }; 690 690 }; 691 - "@babel/plugin-transform-block-scoping-7.18.9" = { 691 + "@babel/plugin-transform-block-scoping-7.20.2" = { 692 692 name = "_at_babel_slash_plugin-transform-block-scoping"; 693 693 packageName = "@babel/plugin-transform-block-scoping"; 694 - version = "7.18.9"; 694 + version = "7.20.2"; 695 695 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz"; 697 - sha512 = "5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw=="; 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz"; 697 + sha512 = "y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ=="; 698 698 }; 699 699 }; 700 - "@babel/plugin-transform-classes-7.19.0" = { 700 + "@babel/plugin-transform-classes-7.20.2" = { 701 701 name = "_at_babel_slash_plugin-transform-classes"; 702 702 packageName = "@babel/plugin-transform-classes"; 703 - version = "7.19.0"; 703 + version = "7.20.2"; 704 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz"; 706 - sha512 = "YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A=="; 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz"; 706 + sha512 = "9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g=="; 707 707 }; 708 708 }; 709 709 "@babel/plugin-transform-computed-properties-7.18.9" = { ··· 715 715 sha512 = "+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw=="; 716 716 }; 717 717 }; 718 - "@babel/plugin-transform-destructuring-7.18.13" = { 718 + "@babel/plugin-transform-destructuring-7.20.2" = { 719 719 name = "_at_babel_slash_plugin-transform-destructuring"; 720 720 packageName = "@babel/plugin-transform-destructuring"; 721 - version = "7.18.13"; 721 + version = "7.20.2"; 722 722 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz"; 724 - sha512 = "TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow=="; 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz"; 724 + sha512 = "mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw=="; 725 725 }; 726 726 }; 727 727 "@babel/plugin-transform-dotall-regex-7.18.6" = { ··· 796 796 sha512 = "qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA=="; 797 797 }; 798 798 }; 799 - "@babel/plugin-transform-modules-amd-7.18.6" = { 799 + "@babel/plugin-transform-modules-amd-7.19.6" = { 800 800 name = "_at_babel_slash_plugin-transform-modules-amd"; 801 801 packageName = "@babel/plugin-transform-modules-amd"; 802 - version = "7.18.6"; 802 + version = "7.19.6"; 803 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz"; 805 - sha512 = "Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg=="; 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz"; 805 + sha512 = "uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg=="; 806 806 }; 807 807 }; 808 - "@babel/plugin-transform-modules-commonjs-7.18.6" = { 808 + "@babel/plugin-transform-modules-commonjs-7.19.6" = { 809 809 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 810 810 packageName = "@babel/plugin-transform-modules-commonjs"; 811 - version = "7.18.6"; 811 + version = "7.19.6"; 812 812 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz"; 814 - sha512 = "Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q=="; 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz"; 814 + sha512 = "8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ=="; 815 815 }; 816 816 }; 817 - "@babel/plugin-transform-modules-systemjs-7.19.0" = { 817 + "@babel/plugin-transform-modules-systemjs-7.19.6" = { 818 818 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 819 819 packageName = "@babel/plugin-transform-modules-systemjs"; 820 - version = "7.19.0"; 820 + version = "7.19.6"; 821 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz"; 823 - sha512 = "x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A=="; 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz"; 823 + sha512 = "fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ=="; 824 824 }; 825 825 }; 826 826 "@babel/plugin-transform-modules-umd-7.18.6" = { ··· 859 859 sha512 = "uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA=="; 860 860 }; 861 861 }; 862 - "@babel/plugin-transform-parameters-7.18.8" = { 862 + "@babel/plugin-transform-parameters-7.20.3" = { 863 863 name = "_at_babel_slash_plugin-transform-parameters"; 864 864 packageName = "@babel/plugin-transform-parameters"; 865 - version = "7.18.8"; 865 + version = "7.20.3"; 866 866 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz"; 868 - sha512 = "ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg=="; 867 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz"; 868 + sha512 = "oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA=="; 869 869 }; 870 870 }; 871 871 "@babel/plugin-transform-property-literals-7.18.6" = { ··· 877 877 sha512 = "cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg=="; 878 878 }; 879 879 }; 880 - "@babel/plugin-transform-react-constant-elements-7.18.12" = { 880 + "@babel/plugin-transform-react-constant-elements-7.20.2" = { 881 881 name = "_at_babel_slash_plugin-transform-react-constant-elements"; 882 882 packageName = "@babel/plugin-transform-react-constant-elements"; 883 - version = "7.18.12"; 883 + version = "7.20.2"; 884 884 src = fetchurl { 885 - url = "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.12.tgz"; 886 - sha512 = "Q99U9/ttiu+LMnRU8psd23HhvwXmKWDQIpocm0JKaICcZHnw+mdQbHm6xnSy7dOl8I5PELakYtNBubNQlBXbZw=="; 885 + url = "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.20.2.tgz"; 886 + sha512 = "KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g=="; 887 887 }; 888 888 }; 889 889 "@babel/plugin-transform-react-display-name-7.18.6" = { ··· 940 940 sha512 = "oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA=="; 941 941 }; 942 942 }; 943 - "@babel/plugin-transform-runtime-7.19.1" = { 943 + "@babel/plugin-transform-runtime-7.19.6" = { 944 944 name = "_at_babel_slash_plugin-transform-runtime"; 945 945 packageName = "@babel/plugin-transform-runtime"; 946 - version = "7.19.1"; 946 + version = "7.19.6"; 947 947 src = fetchurl { 948 - url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.1.tgz"; 949 - sha512 = "2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA=="; 948 + url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz"; 949 + sha512 = "PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw=="; 950 950 }; 951 951 }; 952 952 "@babel/plugin-transform-shorthand-properties-7.18.6" = { ··· 994 994 sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw=="; 995 995 }; 996 996 }; 997 - "@babel/plugin-transform-typescript-7.19.1" = { 997 + "@babel/plugin-transform-typescript-7.20.2" = { 998 998 name = "_at_babel_slash_plugin-transform-typescript"; 999 999 packageName = "@babel/plugin-transform-typescript"; 1000 - version = "7.19.1"; 1000 + version = "7.20.2"; 1001 1001 src = fetchurl { 1002 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.1.tgz"; 1003 - sha512 = "+ILcOU+6mWLlvCwnL920m2Ow3wWx3Wo8n2t5aROQmV55GZt+hOiLvBaa3DNzRjSEHa1aauRs4/YLmkCfFkhhRQ=="; 1002 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.2.tgz"; 1003 + sha512 = "jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag=="; 1004 1004 }; 1005 1005 }; 1006 1006 "@babel/plugin-transform-unicode-escapes-7.18.10" = { ··· 1021 1021 sha512 = "gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA=="; 1022 1022 }; 1023 1023 }; 1024 - "@babel/preset-env-7.19.1" = { 1024 + "@babel/preset-env-7.20.2" = { 1025 1025 name = "_at_babel_slash_preset-env"; 1026 1026 packageName = "@babel/preset-env"; 1027 - version = "7.19.1"; 1027 + version = "7.20.2"; 1028 1028 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.1.tgz"; 1030 - sha512 = "c8B2c6D16Lp+Nt6HcD+nHl0VbPKVnNPTpszahuxJJnurfMtKeZ80A+qUv48Y7wqvS+dTFuLuaM9oYxyNHbCLWA=="; 1029 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz"; 1030 + sha512 = "1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg=="; 1031 1031 }; 1032 1032 }; 1033 1033 "@babel/preset-modules-0.1.5" = { ··· 1057 1057 sha512 = "s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ=="; 1058 1058 }; 1059 1059 }; 1060 - "@babel/runtime-7.19.0" = { 1060 + "@babel/runtime-7.20.1" = { 1061 1061 name = "_at_babel_slash_runtime"; 1062 1062 packageName = "@babel/runtime"; 1063 - version = "7.19.0"; 1063 + version = "7.20.1"; 1064 1064 src = fetchurl { 1065 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz"; 1066 - sha512 = "eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA=="; 1065 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz"; 1066 + sha512 = "mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg=="; 1067 1067 }; 1068 1068 }; 1069 - "@babel/runtime-corejs3-7.19.1" = { 1069 + "@babel/runtime-corejs3-7.20.1" = { 1070 1070 name = "_at_babel_slash_runtime-corejs3"; 1071 1071 packageName = "@babel/runtime-corejs3"; 1072 - version = "7.19.1"; 1072 + version = "7.20.1"; 1073 1073 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.1.tgz"; 1075 - sha512 = "j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g=="; 1074 + url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz"; 1075 + sha512 = "CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg=="; 1076 1076 }; 1077 1077 }; 1078 1078 "@babel/template-7.18.10" = { ··· 1084 1084 sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; 1085 1085 }; 1086 1086 }; 1087 - "@babel/traverse-7.19.1" = { 1087 + "@babel/traverse-7.20.1" = { 1088 1088 name = "_at_babel_slash_traverse"; 1089 1089 packageName = "@babel/traverse"; 1090 - version = "7.19.1"; 1090 + version = "7.20.1"; 1091 1091 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.1.tgz"; 1093 - sha512 = "0j/ZfZMxKukDaag2PtOPDbwuELqIar6lLskVPPJDjXMXjfLb1Obo/1yjxIGqqAJrmfaTIY3z2wFLAQ7qSkLsuA=="; 1092 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz"; 1093 + sha512 = "d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA=="; 1094 1094 }; 1095 1095 }; 1096 - "@babel/types-7.19.0" = { 1096 + "@babel/types-7.20.2" = { 1097 1097 name = "_at_babel_slash_types"; 1098 1098 packageName = "@babel/types"; 1099 - version = "7.19.0"; 1099 + version = "7.20.2"; 1100 1100 src = fetchurl { 1101 - url = "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz"; 1102 - sha512 = "YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA=="; 1101 + url = "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz"; 1102 + sha512 = "FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog=="; 1103 1103 }; 1104 1104 }; 1105 1105 "@bcoe/v8-coverage-0.2.3" = { ··· 1255 1255 sha512 = "IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg=="; 1256 1256 }; 1257 1257 }; 1258 - "@emotion/babel-plugin-11.10.2" = { 1258 + "@emotion/babel-plugin-11.10.5" = { 1259 1259 name = "_at_emotion_slash_babel-plugin"; 1260 1260 packageName = "@emotion/babel-plugin"; 1261 - version = "11.10.2"; 1261 + version = "11.10.5"; 1262 1262 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.2.tgz"; 1264 - sha512 = "xNQ57njWTFVfPAc3cjfuaPdsgLp5QOSuRsj9MA6ndEhH/AzuZM86qIQzt6rq+aGBwj3n5/TkLmU5lhAfdRmogA=="; 1263 + url = "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz"; 1264 + sha512 = "xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA=="; 1265 1265 }; 1266 1266 }; 1267 - "@emotion/cache-11.10.3" = { 1267 + "@emotion/cache-11.10.5" = { 1268 1268 name = "_at_emotion_slash_cache"; 1269 1269 packageName = "@emotion/cache"; 1270 - version = "11.10.3"; 1270 + version = "11.10.5"; 1271 1271 src = fetchurl { 1272 - url = "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.3.tgz"; 1273 - sha512 = "Psmp/7ovAa8appWh3g51goxu/z3iVms7JXOreq136D8Bbn6dYraPnmL6mdM8GThEx9vwSn92Fz+mGSjBzN8UPQ=="; 1272 + url = "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz"; 1273 + sha512 = "dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA=="; 1274 1274 }; 1275 1275 }; 1276 1276 "@emotion/hash-0.9.0" = { ··· 1300 1300 sha512 = "G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA=="; 1301 1301 }; 1302 1302 }; 1303 - "@emotion/react-11.10.4" = { 1303 + "@emotion/react-11.10.5" = { 1304 1304 name = "_at_emotion_slash_react"; 1305 1305 packageName = "@emotion/react"; 1306 - version = "11.10.4"; 1306 + version = "11.10.5"; 1307 1307 src = fetchurl { 1308 - url = "https://registry.npmjs.org/@emotion/react/-/react-11.10.4.tgz"; 1309 - sha512 = "j0AkMpr6BL8gldJZ6XQsQ8DnS9TxEQu1R+OGmDZiWjBAJtCcbt0tS3I/YffoqHXxH6MjgI7KdMbYKw3MEiU9eA=="; 1308 + url = "https://registry.npmjs.org/@emotion/react/-/react-11.10.5.tgz"; 1309 + sha512 = "TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A=="; 1310 1310 }; 1311 1311 }; 1312 - "@emotion/serialize-1.1.0" = { 1312 + "@emotion/serialize-1.1.1" = { 1313 1313 name = "_at_emotion_slash_serialize"; 1314 1314 packageName = "@emotion/serialize"; 1315 - version = "1.1.0"; 1315 + version = "1.1.1"; 1316 1316 src = fetchurl { 1317 - url = "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.0.tgz"; 1318 - sha512 = "F1ZZZW51T/fx+wKbVlwsfchr5q97iW8brAnXmsskz4d0hVB4O3M/SiA3SaeH06x02lSNzkkQv+n3AX3kCXKSFA=="; 1317 + url = "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.1.tgz"; 1318 + sha512 = "Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA=="; 1319 1319 }; 1320 1320 }; 1321 - "@emotion/sheet-1.2.0" = { 1321 + "@emotion/sheet-1.2.1" = { 1322 1322 name = "_at_emotion_slash_sheet"; 1323 1323 packageName = "@emotion/sheet"; 1324 - version = "1.2.0"; 1324 + version = "1.2.1"; 1325 1325 src = fetchurl { 1326 - url = "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.0.tgz"; 1327 - sha512 = "OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w=="; 1326 + url = "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz"; 1327 + sha512 = "zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA=="; 1328 1328 }; 1329 1329 }; 1330 - "@emotion/styled-11.10.4" = { 1330 + "@emotion/styled-11.10.5" = { 1331 1331 name = "_at_emotion_slash_styled"; 1332 1332 packageName = "@emotion/styled"; 1333 - version = "11.10.4"; 1333 + version = "11.10.5"; 1334 1334 src = fetchurl { 1335 - url = "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.4.tgz"; 1336 - sha512 = "pRl4R8Ez3UXvOPfc2bzIoV8u9P97UedgHS4FPX594ntwEuAMA114wlaHvOK24HB48uqfXiGlYIZYCxVJ1R1ttQ=="; 1335 + url = "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.5.tgz"; 1336 + sha512 = "8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw=="; 1337 1337 }; 1338 1338 }; 1339 1339 "@emotion/unitless-0.8.0" = { ··· 1372 1372 sha512 = "AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg=="; 1373 1373 }; 1374 1374 }; 1375 - "@eslint/eslintrc-1.3.2" = { 1375 + "@eslint/eslintrc-1.3.3" = { 1376 1376 name = "_at_eslint_slash_eslintrc"; 1377 1377 packageName = "@eslint/eslintrc"; 1378 - version = "1.3.2"; 1378 + version = "1.3.3"; 1379 1379 src = fetchurl { 1380 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.2.tgz"; 1381 - sha512 = "AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ=="; 1380 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz"; 1381 + sha512 = "uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg=="; 1382 1382 }; 1383 1383 }; 1384 - "@humanwhocodes/config-array-0.10.5" = { 1384 + "@humanwhocodes/config-array-0.11.7" = { 1385 1385 name = "_at_humanwhocodes_slash_config-array"; 1386 1386 packageName = "@humanwhocodes/config-array"; 1387 - version = "0.10.5"; 1387 + version = "0.11.7"; 1388 1388 src = fetchurl { 1389 - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.5.tgz"; 1390 - sha512 = "XVVDtp+dVvRxMoxSiSfasYaG02VEe1qH5cKgMQJWhol6HwzbcqoCMJi8dAGoYAO57jhUyhI6cWuRiTcRaDaYug=="; 1391 - }; 1392 - }; 1393 - "@humanwhocodes/gitignore-to-minimatch-1.0.2" = { 1394 - name = "_at_humanwhocodes_slash_gitignore-to-minimatch"; 1395 - packageName = "@humanwhocodes/gitignore-to-minimatch"; 1396 - version = "1.0.2"; 1397 - src = fetchurl { 1398 - url = "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz"; 1399 - sha512 = "rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA=="; 1389 + url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz"; 1390 + sha512 = "kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw=="; 1400 1391 }; 1401 1392 }; 1402 1393 "@humanwhocodes/module-importer-1.0.1" = { ··· 1624 1615 sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; 1625 1616 }; 1626 1617 }; 1627 - "@jridgewell/trace-mapping-0.3.15" = { 1618 + "@jridgewell/trace-mapping-0.3.17" = { 1628 1619 name = "_at_jridgewell_slash_trace-mapping"; 1629 1620 packageName = "@jridgewell/trace-mapping"; 1630 - version = "0.3.15"; 1621 + version = "0.3.17"; 1631 1622 src = fetchurl { 1632 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz"; 1633 - sha512 = "oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g=="; 1623 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"; 1624 + sha512 = "MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="; 1634 1625 }; 1635 1626 }; 1636 1627 "@leichtgewicht/ip-codec-2.0.4" = { ··· 1642 1633 sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; 1643 1634 }; 1644 1635 }; 1645 - "@mui/base-5.0.0-alpha.99" = { 1636 + "@mui/base-5.0.0-alpha.106" = { 1646 1637 name = "_at_mui_slash_base"; 1647 1638 packageName = "@mui/base"; 1648 - version = "5.0.0-alpha.99"; 1639 + version = "5.0.0-alpha.106"; 1649 1640 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.99.tgz"; 1651 - sha512 = "D04H6O1c0Jv561yI0SVbpa8MpqpW3G43CwJxV2o6ALfI0DMJ45w07dGafmDchb6aCWTRTdggd3rjgmuzyNwPiQ=="; 1641 + url = "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.106.tgz"; 1642 + sha512 = "xJQQtwPCPwr6hGWTBdvDwHYwExn3Bw7nPQkN8Fuz8kHpZqoMVWQvvaFS557AIkkI2AFLV3DxVIMjbCvrIntBWg=="; 1652 1643 }; 1653 1644 }; 1654 - "@mui/core-downloads-tracker-5.10.7" = { 1645 + "@mui/core-downloads-tracker-5.10.14" = { 1655 1646 name = "_at_mui_slash_core-downloads-tracker"; 1656 1647 packageName = "@mui/core-downloads-tracker"; 1657 - version = "5.10.7"; 1648 + version = "5.10.14"; 1658 1649 src = fetchurl { 1659 - url = "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.10.7.tgz"; 1660 - sha512 = "3N0UYVy3MbrHzM3j6f7fIUCZ+bQ1/sSZq143tLxwSssW3Z4AqE83brpr5flEY1Lx+Aowv/cPyQMmZxzRlFCGqw=="; 1650 + url = "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.10.14.tgz"; 1651 + sha512 = "qLgIJNOR9Dre8JiZ/neVzOf4jf88J6YtOkQqugtMrleLjbfRVUSS4LWl9CSOjNq76quYdmYWnSDgfQqOooT2cQ=="; 1661 1652 }; 1662 1653 }; 1663 - "@mui/icons-material-5.10.6" = { 1654 + "@mui/icons-material-5.10.14" = { 1664 1655 name = "_at_mui_slash_icons-material"; 1665 1656 packageName = "@mui/icons-material"; 1666 - version = "5.10.6"; 1657 + version = "5.10.14"; 1667 1658 src = fetchurl { 1668 - url = "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.10.6.tgz"; 1669 - sha512 = "QwxdRmLA46S94B0hExPDx0td+A2unF+33bQ6Cs+lNpJKVsm1YeHwNdYXYcnpWeHeQQ07055OXl7IB2GKDd0MfA=="; 1659 + url = "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.10.14.tgz"; 1660 + sha512 = "qtH60slQa+7MZRn6kyui8rKuoGDglPqaHX+pzBKNvd8JCOlrnfY5DmGGDdToTXyXl8xJ8nhANZbrbpg7UVKq/Q=="; 1670 1661 }; 1671 1662 }; 1672 - "@mui/material-5.10.7" = { 1663 + "@mui/material-5.10.14" = { 1673 1664 name = "_at_mui_slash_material"; 1674 1665 packageName = "@mui/material"; 1675 - version = "5.10.7"; 1666 + version = "5.10.14"; 1676 1667 src = fetchurl { 1677 - url = "https://registry.npmjs.org/@mui/material/-/material-5.10.7.tgz"; 1678 - sha512 = "o1jcQGii+q7ORrXhBiMmGzFDaboc1qTgOOC3zDW+NR9ryVzWzL7qEeqoORbgDB5zk9OBsXCjB91fUH/ls5xMwg=="; 1668 + url = "https://registry.npmjs.org/@mui/material/-/material-5.10.14.tgz"; 1669 + sha512 = "HWzKVAykePMx54WtxVwZyL1W4k3xlHYIqwMw0CaXAvgB3UE9yjABZuuGr8vG5Z6CSNWamzd+s1x8u7pQPFl9og=="; 1679 1670 }; 1680 1671 }; 1681 - "@mui/private-theming-5.10.6" = { 1672 + "@mui/private-theming-5.10.14" = { 1682 1673 name = "_at_mui_slash_private-theming"; 1683 1674 packageName = "@mui/private-theming"; 1684 - version = "5.10.6"; 1675 + version = "5.10.14"; 1685 1676 src = fetchurl { 1686 - url = "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.10.6.tgz"; 1687 - sha512 = "I/W0QyTLRdEx6py3lKAquKO/rNF/7j+nIOM/xCyI9kU0fcotVTcTY08mKMsS6vrzdWpi6pAkD0wP0KwWy5R5VA=="; 1677 + url = "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.10.14.tgz"; 1678 + sha512 = "3aIBe8WK65CwAPDY8nB11hYnzE1CZMymi76UnaFrA/DdGDwl5Y8F6uB+StKrkVmsqF1po7Mp2odqVkHj320gXw=="; 1688 1679 }; 1689 1680 }; 1690 - "@mui/styled-engine-5.10.7" = { 1681 + "@mui/styled-engine-5.10.14" = { 1691 1682 name = "_at_mui_slash_styled-engine"; 1692 1683 packageName = "@mui/styled-engine"; 1693 - version = "5.10.7"; 1684 + version = "5.10.14"; 1694 1685 src = fetchurl { 1695 - url = "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.10.7.tgz"; 1696 - sha512 = "CCrtW+vvCKEm6pOE/QcutQ+ORC/iE6D1ghscN4l7LE2JXPvTXO/z0yu8Wxug1JEDlWm4r1Qa0PzJe1P9bjKzNA=="; 1686 + url = "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.10.14.tgz"; 1687 + sha512 = "bgKdM57ExogWpIfhL/ngSlzF4FhbH00vYF+Y5VALTob4uslFqje0xzoWmbfcCn4cZt2NXxZJIwhsq4vzo5itlw=="; 1697 1688 }; 1698 1689 }; 1699 - "@mui/system-5.10.7" = { 1690 + "@mui/system-5.10.14" = { 1700 1691 name = "_at_mui_slash_system"; 1701 1692 packageName = "@mui/system"; 1702 - version = "5.10.7"; 1693 + version = "5.10.14"; 1703 1694 src = fetchurl { 1704 - url = "https://registry.npmjs.org/@mui/system/-/system-5.10.7.tgz"; 1705 - sha512 = "kwyhjjKGsgtBRFl6vSqidDZcNKU5S1juTgm4Xi2fyWxaEbIQb9Sh9y0iVP2bNCJzgDr0alLaENOZOEaDWHISAQ=="; 1695 + url = "https://registry.npmjs.org/@mui/system/-/system-5.10.14.tgz"; 1696 + sha512 = "2de7XCjRb1j8Od0Stmo0LwFMLpOMNT4wzfINuExXI1TVSuyxXIXUxiC5FEgJW3GMvf/a7SUR8VOiMoKlKWzukw=="; 1706 1697 }; 1707 1698 }; 1708 - "@mui/types-7.2.0" = { 1699 + "@mui/types-7.2.1" = { 1709 1700 name = "_at_mui_slash_types"; 1710 1701 packageName = "@mui/types"; 1711 - version = "7.2.0"; 1702 + version = "7.2.1"; 1712 1703 src = fetchurl { 1713 - url = "https://registry.npmjs.org/@mui/types/-/types-7.2.0.tgz"; 1714 - sha512 = "lGXtFKe5lp3UxTBGqKI1l7G8sE2xBik8qCfrLHD5olwP/YU0/ReWoWT7Lp1//ri32dK39oPMrJN8TgbkCSbsNA=="; 1704 + url = "https://registry.npmjs.org/@mui/types/-/types-7.2.1.tgz"; 1705 + sha512 = "c5mSM7ivD8EsqK6HUi9hQPr5V7TJ/IRThUQ9nWNYPdhCGriTSQV4vL6DflT99LkM+wLiIS1rVjphpEWxERep7A=="; 1715 1706 }; 1716 1707 }; 1717 - "@mui/utils-5.10.6" = { 1708 + "@mui/utils-5.10.14" = { 1718 1709 name = "_at_mui_slash_utils"; 1719 1710 packageName = "@mui/utils"; 1720 - version = "5.10.6"; 1711 + version = "5.10.14"; 1721 1712 src = fetchurl { 1722 - url = "https://registry.npmjs.org/@mui/utils/-/utils-5.10.6.tgz"; 1723 - sha512 = "g0Qs8xN/MW2M3fLL8197h5J2VB9U+49fLlnKKqC6zy/yus5cZwdT+Gwec+wUMxgwQoxMDn+J8oDWAn28kEOR/Q=="; 1713 + url = "https://registry.npmjs.org/@mui/utils/-/utils-5.10.14.tgz"; 1714 + sha512 = "12p59+wDZpA++XVJmKwqsZmrA1nmUQ5d0a1yQWtcDjxNyER1EDzozYN/db+FY2i5ceQh2TynPTEwGms2mXDwFg=="; 1724 1715 }; 1725 1716 }; 1726 1717 "@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" = { ··· 1759 1750 sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 1760 1751 }; 1761 1752 }; 1762 - "@pmmmwh/react-refresh-webpack-plugin-0.5.7" = { 1753 + "@pmmmwh/react-refresh-webpack-plugin-0.5.9" = { 1763 1754 name = "_at_pmmmwh_slash_react-refresh-webpack-plugin"; 1764 1755 packageName = "@pmmmwh/react-refresh-webpack-plugin"; 1765 - version = "0.5.7"; 1756 + version = "0.5.9"; 1766 1757 src = fetchurl { 1767 - url = "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz"; 1768 - sha512 = "bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q=="; 1758 + url = "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.9.tgz"; 1759 + sha512 = "7QV4cqUwhkDIHpMAZ9mestSJ2DMIotVTbOUwbiudhjCRTAWWKIaBecELiEM2LT3AHFeOAaHIcFu4dbXjX+9GBA=="; 1769 1760 }; 1770 1761 }; 1771 1762 "@popperjs/core-2.11.6" = { ··· 1777 1768 sha512 = "50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw=="; 1778 1769 }; 1779 1770 }; 1780 - "@remix-run/router-1.0.1" = { 1771 + "@remix-run/router-1.0.3" = { 1781 1772 name = "_at_remix-run_slash_router"; 1782 1773 packageName = "@remix-run/router"; 1783 - version = "1.0.1"; 1774 + version = "1.0.3"; 1784 1775 src = fetchurl { 1785 - url = "https://registry.npmjs.org/@remix-run/router/-/router-1.0.1.tgz"; 1786 - sha512 = "eBV5rvW4dRFOU1eajN7FmYxjAIVz/mRHgUE9En9mBn6m3mulK3WTR5C3iQhL9MZ14rWAq+xOlEaCkDiW0/heOg=="; 1776 + url = "https://registry.npmjs.org/@remix-run/router/-/router-1.0.3.tgz"; 1777 + sha512 = "ceuyTSs7PZ/tQqi19YZNBc5X7kj1f8p+4DIyrcIYFY9h+hd1OKm4RqtiWldR9eGEvIiJfsqwM4BsuCtRIuEw6Q=="; 1787 1778 }; 1788 1779 }; 1789 1780 "@rollup/plugin-babel-5.3.1" = { ··· 1831 1822 sha512 = "sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg=="; 1832 1823 }; 1833 1824 }; 1834 - "@sinclair/typebox-0.24.43" = { 1825 + "@sinclair/typebox-0.24.51" = { 1835 1826 name = "_at_sinclair_slash_typebox"; 1836 1827 packageName = "@sinclair/typebox"; 1837 - version = "0.24.43"; 1828 + version = "0.24.51"; 1838 1829 src = fetchurl { 1839 - url = "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.43.tgz"; 1840 - sha512 = "1orQTvtazZmsPeBroJjysvsOQCYV2yjWlebkSY38pl5vr2tdLjEJ+LoxITlGNZaH2RE19WlAwQMkH/7C14wLfw=="; 1830 + url = "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz"; 1831 + sha512 = "1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA=="; 1841 1832 }; 1842 1833 }; 1843 - "@sinonjs/commons-1.8.3" = { 1834 + "@sinonjs/commons-1.8.5" = { 1844 1835 name = "_at_sinonjs_slash_commons"; 1845 1836 packageName = "@sinonjs/commons"; 1846 - version = "1.8.3"; 1837 + version = "1.8.5"; 1847 1838 src = fetchurl { 1848 - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"; 1849 - sha512 = "xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="; 1839 + url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.5.tgz"; 1840 + sha512 = "rTpCA0wG1wUxglBSFdMMY0oTrKYvgf4fNgv/sXbfCVAdf+FnPBdKJR/7XbpTCwbCrvCbdPYnlWaUUYz4V2fPDA=="; 1850 1841 }; 1851 1842 }; 1852 1843 "@sinonjs/fake-timers-8.1.0" = { ··· 2011 2002 sha512 = "L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="; 2012 2003 }; 2013 2004 }; 2014 - "@types/babel__core-7.1.19" = { 2005 + "@types/babel__core-7.1.20" = { 2015 2006 name = "_at_types_slash_babel__core"; 2016 2007 packageName = "@types/babel__core"; 2017 - version = "7.1.19"; 2008 + version = "7.1.20"; 2018 2009 src = fetchurl { 2019 - url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz"; 2020 - sha512 = "WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw=="; 2010 + url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.20.tgz"; 2011 + sha512 = "PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ=="; 2021 2012 }; 2022 2013 }; 2023 2014 "@types/babel__generator-7.6.4" = { ··· 2083 2074 sha512 = "h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw=="; 2084 2075 }; 2085 2076 }; 2086 - "@types/eslint-8.4.6" = { 2077 + "@types/eslint-8.4.10" = { 2087 2078 name = "_at_types_slash_eslint"; 2088 2079 packageName = "@types/eslint"; 2089 - version = "8.4.6"; 2080 + version = "8.4.10"; 2090 2081 src = fetchurl { 2091 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.6.tgz"; 2092 - sha512 = "/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g=="; 2082 + url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.10.tgz"; 2083 + sha512 = "Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw=="; 2093 2084 }; 2094 2085 }; 2095 2086 "@types/eslint-scope-3.7.4" = { ··· 2227 2218 sha512 = "Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="; 2228 2219 }; 2229 2220 }; 2230 - "@types/node-18.7.23" = { 2221 + "@types/node-18.11.9" = { 2231 2222 name = "_at_types_slash_node"; 2232 2223 packageName = "@types/node"; 2233 - version = "18.7.23"; 2224 + version = "18.11.9"; 2234 2225 src = fetchurl { 2235 - url = "https://registry.npmjs.org/@types/node/-/node-18.7.23.tgz"; 2236 - sha512 = "DWNcCHolDq0ZKGizjx2DZjR/PqsYwAcYUJmfMWqtVU2MBMG5Mo+xFZrhGId5r/O5HOuMPyQEcM6KUBp5lBZZBg=="; 2226 + url = "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz"; 2227 + sha512 = "CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg=="; 2237 2228 }; 2238 2229 }; 2239 2230 "@types/parse-json-4.0.0" = { ··· 2290 2281 sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; 2291 2282 }; 2292 2283 }; 2293 - "@types/react-18.0.21" = { 2284 + "@types/react-18.0.25" = { 2294 2285 name = "_at_types_slash_react"; 2295 2286 packageName = "@types/react"; 2296 - version = "18.0.21"; 2287 + version = "18.0.25"; 2297 2288 src = fetchurl { 2298 - url = "https://registry.npmjs.org/@types/react/-/react-18.0.21.tgz"; 2299 - sha512 = "7QUCOxvFgnD5Jk8ZKlUAhVcRj7GuJRjnjjiY/IUBWKgOlnvDvTMLD4RTF7NPyVmbRhNrbomZiOepg7M/2Kj1mA=="; 2289 + url = "https://registry.npmjs.org/@types/react/-/react-18.0.25.tgz"; 2290 + sha512 = "xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g=="; 2300 2291 }; 2301 2292 }; 2302 2293 "@types/react-is-17.0.3" = { ··· 2344 2335 sha512 = "hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="; 2345 2336 }; 2346 2337 }; 2338 + "@types/semver-7.3.13" = { 2339 + name = "_at_types_slash_semver"; 2340 + packageName = "@types/semver"; 2341 + version = "7.3.13"; 2342 + src = fetchurl { 2343 + url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz"; 2344 + sha512 = "21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw=="; 2345 + }; 2346 + }; 2347 2347 "@types/serve-index-1.9.1" = { 2348 2348 name = "_at_types_slash_serve-index"; 2349 2349 packageName = "@types/serve-index"; ··· 2425 2425 sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="; 2426 2426 }; 2427 2427 }; 2428 - "@typescript-eslint/eslint-plugin-5.38.1" = { 2428 + "@typescript-eslint/eslint-plugin-5.43.0" = { 2429 2429 name = "_at_typescript-eslint_slash_eslint-plugin"; 2430 2430 packageName = "@typescript-eslint/eslint-plugin"; 2431 - version = "5.38.1"; 2431 + version = "5.43.0"; 2432 2432 src = fetchurl { 2433 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.38.1.tgz"; 2434 - sha512 = "ky7EFzPhqz3XlhS7vPOoMDaQnQMn+9o5ICR9CPr/6bw8HrFkzhMSxuA3gRfiJVvs7geYrSeawGJjZoZQKCOglQ=="; 2433 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.43.0.tgz"; 2434 + sha512 = "wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA=="; 2435 2435 }; 2436 2436 }; 2437 - "@typescript-eslint/experimental-utils-5.38.1" = { 2437 + "@typescript-eslint/experimental-utils-5.43.0" = { 2438 2438 name = "_at_typescript-eslint_slash_experimental-utils"; 2439 2439 packageName = "@typescript-eslint/experimental-utils"; 2440 - version = "5.38.1"; 2440 + version = "5.43.0"; 2441 2441 src = fetchurl { 2442 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.38.1.tgz"; 2443 - sha512 = "Zv0EcU0iu64DiVG3pRZU0QYCgANO//U1fS3oEs3eqHD1eIVVcQsFd/T01ckaNbL2H2aCqRojY2xZuMAPcOArEA=="; 2442 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.43.0.tgz"; 2443 + sha512 = "WkT637CumTJbm/hRbFfnHBMgfUYTKr08LitVsD7gQId7bi6rnkx3pu3jac67lmp5ObW4MpJ9SNFZAIOUB/Qbsw=="; 2444 2444 }; 2445 2445 }; 2446 - "@typescript-eslint/parser-5.38.1" = { 2446 + "@typescript-eslint/parser-5.43.0" = { 2447 2447 name = "_at_typescript-eslint_slash_parser"; 2448 2448 packageName = "@typescript-eslint/parser"; 2449 - version = "5.38.1"; 2449 + version = "5.43.0"; 2450 2450 src = fetchurl { 2451 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.38.1.tgz"; 2452 - sha512 = "LDqxZBVFFQnQRz9rUZJhLmox+Ep5kdUmLatLQnCRR6523YV+XhRjfYzStQ4MheFA8kMAfUlclHSbu+RKdRwQKw=="; 2451 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.43.0.tgz"; 2452 + sha512 = "2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug=="; 2453 2453 }; 2454 2454 }; 2455 - "@typescript-eslint/scope-manager-5.38.1" = { 2455 + "@typescript-eslint/scope-manager-5.43.0" = { 2456 2456 name = "_at_typescript-eslint_slash_scope-manager"; 2457 2457 packageName = "@typescript-eslint/scope-manager"; 2458 - version = "5.38.1"; 2458 + version = "5.43.0"; 2459 2459 src = fetchurl { 2460 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.38.1.tgz"; 2461 - sha512 = "BfRDq5RidVU3RbqApKmS7RFMtkyWMM50qWnDAkKgQiezRtLKsoyRKIvz1Ok5ilRWeD9IuHvaidaLxvGx/2eqTQ=="; 2460 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.43.0.tgz"; 2461 + sha512 = "XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw=="; 2462 2462 }; 2463 2463 }; 2464 - "@typescript-eslint/type-utils-5.38.1" = { 2464 + "@typescript-eslint/type-utils-5.43.0" = { 2465 2465 name = "_at_typescript-eslint_slash_type-utils"; 2466 2466 packageName = "@typescript-eslint/type-utils"; 2467 - version = "5.38.1"; 2467 + version = "5.43.0"; 2468 2468 src = fetchurl { 2469 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.38.1.tgz"; 2470 - sha512 = "UU3j43TM66gYtzo15ivK2ZFoDFKKP0k03MItzLdq0zV92CeGCXRfXlfQX5ILdd4/DSpHkSjIgLLLh1NtkOJOAw=="; 2469 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.43.0.tgz"; 2470 + sha512 = "K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg=="; 2471 2471 }; 2472 2472 }; 2473 - "@typescript-eslint/types-5.38.1" = { 2473 + "@typescript-eslint/types-5.43.0" = { 2474 2474 name = "_at_typescript-eslint_slash_types"; 2475 2475 packageName = "@typescript-eslint/types"; 2476 - version = "5.38.1"; 2476 + version = "5.43.0"; 2477 2477 src = fetchurl { 2478 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.38.1.tgz"; 2479 - sha512 = "QTW1iHq1Tffp9lNfbfPm4WJabbvpyaehQ0SrvVK2yfV79SytD9XDVxqiPvdrv2LK7DGSFo91TB2FgWanbJAZXg=="; 2478 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz"; 2479 + sha512 = "jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg=="; 2480 2480 }; 2481 2481 }; 2482 - "@typescript-eslint/typescript-estree-5.38.1" = { 2482 + "@typescript-eslint/typescript-estree-5.43.0" = { 2483 2483 name = "_at_typescript-eslint_slash_typescript-estree"; 2484 2484 packageName = "@typescript-eslint/typescript-estree"; 2485 - version = "5.38.1"; 2485 + version = "5.43.0"; 2486 2486 src = fetchurl { 2487 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.38.1.tgz"; 2488 - sha512 = "99b5e/Enoe8fKMLdSuwrfH/C0EIbpUWmeEKHmQlGZb8msY33qn1KlkFww0z26o5Omx7EVjzVDCWEfrfCDHfE7g=="; 2487 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz"; 2488 + sha512 = "BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg=="; 2489 2489 }; 2490 2490 }; 2491 - "@typescript-eslint/utils-5.38.1" = { 2491 + "@typescript-eslint/utils-5.43.0" = { 2492 2492 name = "_at_typescript-eslint_slash_utils"; 2493 2493 packageName = "@typescript-eslint/utils"; 2494 - version = "5.38.1"; 2494 + version = "5.43.0"; 2495 2495 src = fetchurl { 2496 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.38.1.tgz"; 2497 - sha512 = "oIuUiVxPBsndrN81oP8tXnFa/+EcZ03qLqPDfSZ5xIJVm7A9V0rlkQwwBOAGtrdN70ZKDlKv+l1BeT4eSFxwXA=="; 2496 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.43.0.tgz"; 2497 + sha512 = "8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A=="; 2498 2498 }; 2499 2499 }; 2500 - "@typescript-eslint/visitor-keys-5.38.1" = { 2500 + "@typescript-eslint/visitor-keys-5.43.0" = { 2501 2501 name = "_at_typescript-eslint_slash_visitor-keys"; 2502 2502 packageName = "@typescript-eslint/visitor-keys"; 2503 - version = "5.38.1"; 2503 + version = "5.43.0"; 2504 2504 src = fetchurl { 2505 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.38.1.tgz"; 2506 - sha512 = "bSHr1rRxXt54+j2n4k54p4fj8AHJ49VDWtjpImOpzQj4qjAiOpPni+V1Tyajh19Api1i844F757cur8wH3YvOA=="; 2505 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz"; 2506 + sha512 = "icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg=="; 2507 2507 }; 2508 2508 }; 2509 2509 "@webassemblyjs/ast-1.11.1" = { ··· 2686 2686 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 2687 2687 }; 2688 2688 }; 2689 - "acorn-8.8.0" = { 2689 + "acorn-8.8.1" = { 2690 2690 name = "acorn"; 2691 2691 packageName = "acorn"; 2692 - version = "8.8.0"; 2692 + version = "8.8.1"; 2693 2693 src = fetchurl { 2694 - url = "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz"; 2695 - sha512 = "QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w=="; 2694 + url = "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz"; 2695 + sha512 = "7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA=="; 2696 2696 }; 2697 2697 }; 2698 2698 "acorn-globals-6.0.0" = { ··· 2776 2776 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 2777 2777 }; 2778 2778 }; 2779 - "ajv-8.11.0" = { 2779 + "ajv-8.11.2" = { 2780 2780 name = "ajv"; 2781 2781 packageName = "ajv"; 2782 - version = "8.11.0"; 2782 + version = "8.11.2"; 2783 2783 src = fetchurl { 2784 - url = "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz"; 2785 - sha512 = "wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg=="; 2784 + url = "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz"; 2785 + sha512 = "E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg=="; 2786 2786 }; 2787 2787 }; 2788 2788 "ajv-formats-2.1.1" = { ··· 2938 2938 sha512 = "hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="; 2939 2939 }; 2940 2940 }; 2941 - "array-includes-3.1.5" = { 2941 + "array-includes-3.1.6" = { 2942 2942 name = "array-includes"; 2943 2943 packageName = "array-includes"; 2944 - version = "3.1.5"; 2944 + version = "3.1.6"; 2945 2945 src = fetchurl { 2946 - url = "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz"; 2947 - sha512 = "iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ=="; 2946 + url = "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz"; 2947 + sha512 = "sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw=="; 2948 2948 }; 2949 2949 }; 2950 2950 "array-union-2.1.0" = { ··· 2956 2956 sha512 = "HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="; 2957 2957 }; 2958 2958 }; 2959 - "array.prototype.flat-1.3.0" = { 2959 + "array.prototype.flat-1.3.1" = { 2960 2960 name = "array.prototype.flat"; 2961 2961 packageName = "array.prototype.flat"; 2962 - version = "1.3.0"; 2962 + version = "1.3.1"; 2963 2963 src = fetchurl { 2964 - url = "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz"; 2965 - sha512 = "12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw=="; 2964 + url = "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz"; 2965 + sha512 = "roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA=="; 2966 2966 }; 2967 2967 }; 2968 - "array.prototype.flatmap-1.3.0" = { 2968 + "array.prototype.flatmap-1.3.1" = { 2969 2969 name = "array.prototype.flatmap"; 2970 2970 packageName = "array.prototype.flatmap"; 2971 - version = "1.3.0"; 2971 + version = "1.3.1"; 2972 2972 src = fetchurl { 2973 - url = "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz"; 2974 - sha512 = "PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg=="; 2973 + url = "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz"; 2974 + sha512 = "8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ=="; 2975 2975 }; 2976 2976 }; 2977 - "array.prototype.reduce-1.0.4" = { 2977 + "array.prototype.reduce-1.0.5" = { 2978 2978 name = "array.prototype.reduce"; 2979 2979 packageName = "array.prototype.reduce"; 2980 - version = "1.0.4"; 2980 + version = "1.0.5"; 2981 2981 src = fetchurl { 2982 - url = "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz"; 2983 - sha512 = "WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw=="; 2982 + url = "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz"; 2983 + sha512 = "kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q=="; 2984 2984 }; 2985 2985 }; 2986 2986 "asap-2.0.6" = { ··· 3028 3028 sha512 = "+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg=="; 3029 3029 }; 3030 3030 }; 3031 - "autoprefixer-10.4.12" = { 3031 + "autoprefixer-10.4.13" = { 3032 3032 name = "autoprefixer"; 3033 3033 packageName = "autoprefixer"; 3034 - version = "10.4.12"; 3034 + version = "10.4.13"; 3035 3035 src = fetchurl { 3036 - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.12.tgz"; 3037 - sha512 = "WrCGV9/b97Pa+jtwf5UGaRjgQIg7OK3D06GnoYoZNcG1Xb8Gt3EfuKjlhh9i/VtT16g6PYjZ69jdJ2g8FxSC4Q=="; 3036 + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz"; 3037 + sha512 = "49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg=="; 3038 3038 }; 3039 3039 }; 3040 - "axe-core-4.4.3" = { 3040 + "axe-core-4.5.2" = { 3041 3041 name = "axe-core"; 3042 3042 packageName = "axe-core"; 3043 - version = "4.4.3"; 3043 + version = "4.5.2"; 3044 3044 src = fetchurl { 3045 - url = "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz"; 3046 - sha512 = "32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w=="; 3045 + url = "https://registry.npmjs.org/axe-core/-/axe-core-4.5.2.tgz"; 3046 + sha512 = "u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA=="; 3047 3047 }; 3048 3048 }; 3049 3049 "axobject-query-2.2.0" = { ··· 3064 3064 sha512 = "cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg=="; 3065 3065 }; 3066 3066 }; 3067 - "babel-loader-8.2.5" = { 3067 + "babel-loader-8.3.0" = { 3068 3068 name = "babel-loader"; 3069 3069 packageName = "babel-loader"; 3070 - version = "8.2.5"; 3070 + version = "8.3.0"; 3071 3071 src = fetchurl { 3072 - url = "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz"; 3073 - sha512 = "OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ=="; 3074 - }; 3075 - }; 3076 - "babel-plugin-dynamic-import-node-2.3.3" = { 3077 - name = "babel-plugin-dynamic-import-node"; 3078 - packageName = "babel-plugin-dynamic-import-node"; 3079 - version = "2.3.3"; 3080 - src = fetchurl { 3081 - url = "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz"; 3082 - sha512 = "jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ=="; 3072 + url = "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz"; 3073 + sha512 = "H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q=="; 3083 3074 }; 3084 3075 }; 3085 3076 "babel-plugin-istanbul-6.1.1" = { ··· 3235 3226 sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="; 3236 3227 }; 3237 3228 }; 3238 - "body-parser-1.20.0" = { 3229 + "body-parser-1.20.1" = { 3239 3230 name = "body-parser"; 3240 3231 packageName = "body-parser"; 3241 - version = "1.20.0"; 3232 + version = "1.20.1"; 3242 3233 src = fetchurl { 3243 - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz"; 3244 - sha512 = "DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg=="; 3234 + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz"; 3235 + sha512 = "jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw=="; 3245 3236 }; 3246 3237 }; 3247 3238 "bonjour-service-1.0.14" = { ··· 3415 3406 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 3416 3407 }; 3417 3408 }; 3418 - "caniuse-lite-1.0.30001412" = { 3409 + "caniuse-lite-1.0.30001431" = { 3419 3410 name = "caniuse-lite"; 3420 3411 packageName = "caniuse-lite"; 3421 - version = "1.0.30001412"; 3412 + version = "1.0.30001431"; 3422 3413 src = fetchurl { 3423 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001412.tgz"; 3424 - sha512 = "+TeEIee1gS5bYOiuf+PS/kp2mrXic37Hl66VY6EAfxasIk5fELTktK2oOezYed12H8w7jt3s512PpulQidPjwA=="; 3414 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz"; 3415 + sha512 = "zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ=="; 3425 3416 }; 3426 3417 }; 3427 3418 "case-sensitive-paths-webpack-plugin-2.4.0" = { ··· 3496 3487 sha512 = "p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg=="; 3497 3488 }; 3498 3489 }; 3499 - "ci-info-3.4.0" = { 3490 + "ci-info-3.6.1" = { 3500 3491 name = "ci-info"; 3501 3492 packageName = "ci-info"; 3502 - version = "3.4.0"; 3493 + version = "3.6.1"; 3503 3494 src = fetchurl { 3504 - url = "https://registry.npmjs.org/ci-info/-/ci-info-3.4.0.tgz"; 3505 - sha512 = "t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug=="; 3495 + url = "https://registry.npmjs.org/ci-info/-/ci-info-3.6.1.tgz"; 3496 + sha512 = "up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w=="; 3506 3497 }; 3507 3498 }; 3508 3499 "cjs-module-lexer-1.2.2" = { ··· 3748 3739 sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; 3749 3740 }; 3750 3741 }; 3751 - "convert-source-map-1.8.0" = { 3742 + "convert-source-map-1.9.0" = { 3752 3743 name = "convert-source-map"; 3753 3744 packageName = "convert-source-map"; 3754 - version = "1.8.0"; 3745 + version = "1.9.0"; 3755 3746 src = fetchurl { 3756 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"; 3757 - sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 3747 + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"; 3748 + sha512 = "ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="; 3758 3749 }; 3759 3750 }; 3760 3751 "cookie-0.5.0" = { ··· 3775 3766 sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="; 3776 3767 }; 3777 3768 }; 3778 - "core-js-3.25.3" = { 3769 + "core-js-3.26.1" = { 3779 3770 name = "core-js"; 3780 3771 packageName = "core-js"; 3781 - version = "3.25.3"; 3772 + version = "3.26.1"; 3782 3773 src = fetchurl { 3783 - url = "https://registry.npmjs.org/core-js/-/core-js-3.25.3.tgz"; 3784 - sha512 = "y1hvKXmPHvm5B7w4ln1S4uc9eV/O5+iFExSRUimnvIph11uaizFR8LFMdONN8hG3P2pipUfX4Y/fR8rAEtcHcQ=="; 3774 + url = "https://registry.npmjs.org/core-js/-/core-js-3.26.1.tgz"; 3775 + sha512 = "21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA=="; 3785 3776 }; 3786 3777 }; 3787 - "core-js-compat-3.25.3" = { 3778 + "core-js-compat-3.26.1" = { 3788 3779 name = "core-js-compat"; 3789 3780 packageName = "core-js-compat"; 3790 - version = "3.25.3"; 3781 + version = "3.26.1"; 3791 3782 src = fetchurl { 3792 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.3.tgz"; 3793 - sha512 = "xVtYpJQ5grszDHEUU9O7XbjjcZ0ccX3LgQsyqSvTnjX97ZqEgn9F5srmrwwwMtbKzDllyFPL+O+2OFMl1lU4TQ=="; 3783 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz"; 3784 + sha512 = "622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A=="; 3794 3785 }; 3795 3786 }; 3796 - "core-js-pure-3.25.3" = { 3787 + "core-js-pure-3.26.1" = { 3797 3788 name = "core-js-pure"; 3798 3789 packageName = "core-js-pure"; 3799 - version = "3.25.3"; 3790 + version = "3.26.1"; 3800 3791 src = fetchurl { 3801 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.3.tgz"; 3802 - sha512 = "T/7qvgv70MEvRkZ8p6BasLZmOVYKzOaWNBEHAU8FmveCJkl4nko2quqPQOmy6AJIp5MBanhz9no3A94NoRb0XA=="; 3792 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz"; 3793 + sha512 = "VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ=="; 3803 3794 }; 3804 3795 }; 3805 3796 "core-util-is-1.0.3" = { ··· 3820 3811 sha512 = "xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg=="; 3821 3812 }; 3822 3813 }; 3823 - "cosmiconfig-7.0.1" = { 3814 + "cosmiconfig-7.1.0" = { 3824 3815 name = "cosmiconfig"; 3825 3816 packageName = "cosmiconfig"; 3826 - version = "7.0.1"; 3817 + version = "7.1.0"; 3827 3818 src = fetchurl { 3828 - url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz"; 3829 - sha512 = "a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ=="; 3819 + url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz"; 3820 + sha512 = "AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA=="; 3830 3821 }; 3831 3822 }; 3832 3823 "cross-fetch-3.1.5" = { ··· 3883 3874 sha512 = "Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw=="; 3884 3875 }; 3885 3876 }; 3886 - "css-loader-6.7.1" = { 3877 + "css-loader-6.7.2" = { 3887 3878 name = "css-loader"; 3888 3879 packageName = "css-loader"; 3889 - version = "6.7.1"; 3880 + version = "6.7.2"; 3890 3881 src = fetchurl { 3891 - url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz"; 3892 - sha512 = "yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw=="; 3882 + url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.2.tgz"; 3883 + sha512 = "oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q=="; 3893 3884 }; 3894 3885 }; 3895 3886 "css-minimizer-webpack-plugin-3.4.1" = { ··· 3973 3964 sha512 = "HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="; 3974 3965 }; 3975 3966 }; 3976 - "cssdb-7.0.1" = { 3967 + "cssdb-7.1.0" = { 3977 3968 name = "cssdb"; 3978 3969 packageName = "cssdb"; 3979 - version = "7.0.1"; 3970 + version = "7.1.0"; 3980 3971 src = fetchurl { 3981 - url = "https://registry.npmjs.org/cssdb/-/cssdb-7.0.1.tgz"; 3982 - sha512 = "pT3nzyGM78poCKLAEy2zWIVX2hikq6dIrjuZzLV98MumBg+xMTNYfHx7paUlfiRTgg91O/vR889CIf+qiv79Rw=="; 3972 + url = "https://registry.npmjs.org/cssdb/-/cssdb-7.1.0.tgz"; 3973 + sha512 = "Sd99PrFgx28ez4GHu8yoQIufc/70h9oYowDf4EjeIKi8mac9whxRjhM3IaMr6EllP6KKKWtJrMfN6C7T9tIWvQ=="; 3983 3974 }; 3984 3975 }; 3985 3976 "cssesc-3.0.0" = { ··· 3991 3982 sha512 = "/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="; 3992 3983 }; 3993 3984 }; 3994 - "cssnano-5.1.13" = { 3985 + "cssnano-5.1.14" = { 3995 3986 name = "cssnano"; 3996 3987 packageName = "cssnano"; 3997 - version = "5.1.13"; 3988 + version = "5.1.14"; 3998 3989 src = fetchurl { 3999 - url = "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz"; 4000 - sha512 = "S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ=="; 3990 + url = "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz"; 3991 + sha512 = "Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw=="; 4001 3992 }; 4002 3993 }; 4003 - "cssnano-preset-default-5.2.12" = { 3994 + "cssnano-preset-default-5.2.13" = { 4004 3995 name = "cssnano-preset-default"; 4005 3996 packageName = "cssnano-preset-default"; 4006 - version = "5.2.12"; 3997 + version = "5.2.13"; 4007 3998 src = fetchurl { 4008 - url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz"; 4009 - sha512 = "OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew=="; 3999 + url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz"; 4000 + sha512 = "PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ=="; 4010 4001 }; 4011 4002 }; 4012 4003 "cssnano-utils-3.1.0" = { ··· 4108 4099 sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 4109 4100 }; 4110 4101 }; 4111 - "decimal.js-10.4.1" = { 4102 + "decimal.js-10.4.2" = { 4112 4103 name = "decimal.js"; 4113 4104 packageName = "decimal.js"; 4114 - version = "10.4.1"; 4105 + version = "10.4.2"; 4115 4106 src = fetchurl { 4116 - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz"; 4117 - sha512 = "F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw=="; 4107 + url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.2.tgz"; 4108 + sha512 = "ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA=="; 4118 4109 }; 4119 4110 }; 4120 4111 "dedent-0.7.0" = { ··· 4171 4162 sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; 4172 4163 }; 4173 4164 }; 4174 - "defined-1.0.0" = { 4165 + "defined-1.0.1" = { 4175 4166 name = "defined"; 4176 4167 packageName = "defined"; 4177 - version = "1.0.0"; 4168 + version = "1.0.1"; 4178 4169 src = fetchurl { 4179 - url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz"; 4180 - sha512 = "Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ=="; 4170 + url = "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz"; 4171 + sha512 = "hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q=="; 4181 4172 }; 4182 4173 }; 4183 4174 "delayed-stream-1.0.0" = { ··· 4486 4477 sha512 = "/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ=="; 4487 4478 }; 4488 4479 }; 4489 - "electron-to-chromium-1.4.264" = { 4480 + "electron-to-chromium-1.4.284" = { 4490 4481 name = "electron-to-chromium"; 4491 4482 packageName = "electron-to-chromium"; 4492 - version = "1.4.264"; 4483 + version = "1.4.284"; 4493 4484 src = fetchurl { 4494 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.264.tgz"; 4495 - sha512 = "AZ6ZRkucHOQT8wke50MktxtmcWZr67kE17X/nAXFf62NIdMdgY6xfsaJD5Szoy84lnkuPWH+4tTNE3s2+bPCiw=="; 4485 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz"; 4486 + sha512 = "M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="; 4496 4487 }; 4497 4488 }; 4498 4489 "emittery-0.10.2" = { ··· 4585 4576 sha512 = "Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ=="; 4586 4577 }; 4587 4578 }; 4588 - "es-abstract-1.20.3" = { 4579 + "es-abstract-1.20.4" = { 4589 4580 name = "es-abstract"; 4590 4581 packageName = "es-abstract"; 4591 - version = "1.20.3"; 4582 + version = "1.20.4"; 4592 4583 src = fetchurl { 4593 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.3.tgz"; 4594 - sha512 = "AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw=="; 4584 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz"; 4585 + sha512 = "0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA=="; 4595 4586 }; 4596 4587 }; 4597 4588 "es-array-method-boxes-properly-1.0.0" = { ··· 4684 4675 sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; 4685 4676 }; 4686 4677 }; 4687 - "eslint-8.24.0" = { 4678 + "eslint-8.27.0" = { 4688 4679 name = "eslint"; 4689 4680 packageName = "eslint"; 4690 - version = "8.24.0"; 4681 + version = "8.27.0"; 4691 4682 src = fetchurl { 4692 - url = "https://registry.npmjs.org/eslint/-/eslint-8.24.0.tgz"; 4693 - sha512 = "dWFaPhGhTAiPcCgm3f6LI2MBWbogMnTJzFBbhXVRQDJPkr9pGZvVjlVfXd+vyDcWPA2Ic9L2AXPIQM0+vk/cSQ=="; 4683 + url = "https://registry.npmjs.org/eslint/-/eslint-8.27.0.tgz"; 4684 + sha512 = "0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ=="; 4694 4685 }; 4695 4686 }; 4696 4687 "eslint-config-react-app-7.0.1" = { ··· 4756 4747 sha512 = "sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q=="; 4757 4748 }; 4758 4749 }; 4759 - "eslint-plugin-react-7.31.8" = { 4750 + "eslint-plugin-react-7.31.10" = { 4760 4751 name = "eslint-plugin-react"; 4761 4752 packageName = "eslint-plugin-react"; 4762 - version = "7.31.8"; 4753 + version = "7.31.10"; 4763 4754 src = fetchurl { 4764 - url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz"; 4765 - sha512 = "5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw=="; 4755 + url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz"; 4756 + sha512 = "e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA=="; 4766 4757 }; 4767 4758 }; 4768 4759 "eslint-plugin-react-hooks-4.6.0" = { ··· 4774 4765 sha512 = "oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g=="; 4775 4766 }; 4776 4767 }; 4777 - "eslint-plugin-testing-library-5.7.0" = { 4768 + "eslint-plugin-testing-library-5.9.1" = { 4778 4769 name = "eslint-plugin-testing-library"; 4779 4770 packageName = "eslint-plugin-testing-library"; 4780 - version = "5.7.0"; 4771 + version = "5.9.1"; 4781 4772 src = fetchurl { 4782 - url = "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.7.0.tgz"; 4783 - sha512 = "pI8LKtFiAflBpN4h14vTtfhKqLwtIW40TNhWyw0ckqHm0W/J0VmYtThoxpTAdHrvEWnkALSG1Z8ABBkIncMIHA=="; 4773 + url = "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.9.1.tgz"; 4774 + sha512 = "6BQp3tmb79jLLasPHJmy8DnxREe+2Pgf7L+7o09TSWPfdqqtQfRZmZNetr5mOs3yqZk/MRNxpN3RUpJe0wB4LQ=="; 4784 4775 }; 4785 4776 }; 4786 4777 "eslint-scope-5.1.1" = { ··· 4837 4828 sha512 = "avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w=="; 4838 4829 }; 4839 4830 }; 4840 - "espree-9.4.0" = { 4831 + "espree-9.4.1" = { 4841 4832 name = "espree"; 4842 4833 packageName = "espree"; 4843 - version = "9.4.0"; 4834 + version = "9.4.1"; 4844 4835 src = fetchurl { 4845 - url = "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz"; 4846 - sha512 = "DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw=="; 4836 + url = "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz"; 4837 + sha512 = "XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg=="; 4847 4838 }; 4848 4839 }; 4849 4840 "esprima-4.0.1" = { ··· 4963 4954 sha512 = "E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw=="; 4964 4955 }; 4965 4956 }; 4966 - "express-4.18.1" = { 4957 + "express-4.18.2" = { 4967 4958 name = "express"; 4968 4959 packageName = "express"; 4969 - version = "4.18.1"; 4960 + version = "4.18.2"; 4970 4961 src = fetchurl { 4971 - url = "https://registry.npmjs.org/express/-/express-4.18.1.tgz"; 4972 - sha512 = "zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q=="; 4962 + url = "https://registry.npmjs.org/express/-/express-4.18.2.tgz"; 4963 + sha512 = "5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ=="; 4973 4964 }; 4974 4965 }; 4975 4966 "fast-deep-equal-3.1.3" = { ··· 5404 5395 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 5405 5396 }; 5406 5397 }; 5407 - "globals-13.17.0" = { 5398 + "globals-13.18.0" = { 5408 5399 name = "globals"; 5409 5400 packageName = "globals"; 5410 - version = "13.17.0"; 5401 + version = "13.18.0"; 5411 5402 src = fetchurl { 5412 - url = "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz"; 5413 - sha512 = "1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw=="; 5403 + url = "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz"; 5404 + sha512 = "/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A=="; 5414 5405 }; 5415 5406 }; 5416 5407 "globby-11.1.0" = { ··· 5710 5701 sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="; 5711 5702 }; 5712 5703 }; 5713 - "i18next-21.9.2" = { 5704 + "i18next-21.10.0" = { 5714 5705 name = "i18next"; 5715 5706 packageName = "i18next"; 5716 - version = "21.9.2"; 5707 + version = "21.10.0"; 5717 5708 src = fetchurl { 5718 - url = "https://registry.npmjs.org/i18next/-/i18next-21.9.2.tgz"; 5719 - sha512 = "00fVrLQOwy45nm3OtC9l1WiLK3nJlIYSljgCt0qzTaAy65aciMdRy9GsuW+a2AtKtdg9/njUGfRH30LRupV7ZQ=="; 5709 + url = "https://registry.npmjs.org/i18next/-/i18next-21.10.0.tgz"; 5710 + sha512 = "YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg=="; 5720 5711 }; 5721 5712 }; 5722 - "i18next-browser-languagedetector-6.1.5" = { 5713 + "i18next-browser-languagedetector-6.1.8" = { 5723 5714 name = "i18next-browser-languagedetector"; 5724 5715 packageName = "i18next-browser-languagedetector"; 5725 - version = "6.1.5"; 5716 + version = "6.1.8"; 5726 5717 src = fetchurl { 5727 - url = "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-6.1.5.tgz"; 5728 - sha512 = "11t7b39oKeZe4uyMxLSPnfw28BCPNLZgUk7zyufex0zKXZ+Bv+JnmJgoB+IfQLZwDt1d71PM8vwBX1NCgliY3g=="; 5718 + url = "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-6.1.8.tgz"; 5719 + sha512 = "Svm+MduCElO0Meqpj1kJAriTC6OhI41VhlT/A0UPjGoPZBhAHIaGE5EfsHlTpgdH09UVX7rcc72pSDDBeKSQQA=="; 5729 5720 }; 5730 5721 }; 5731 - "i18next-http-backend-1.4.4" = { 5722 + "i18next-http-backend-1.4.5" = { 5732 5723 name = "i18next-http-backend"; 5733 5724 packageName = "i18next-http-backend"; 5734 - version = "1.4.4"; 5725 + version = "1.4.5"; 5735 5726 src = fetchurl { 5736 - url = "https://registry.npmjs.org/i18next-http-backend/-/i18next-http-backend-1.4.4.tgz"; 5737 - sha512 = "M4gLPe6JKZ2p1UmE6t4rzWV/sAxgrLThW7ztXAsTpFwFqXoyzhTzX8eYxVv9KjpCQh4K9nwxnEjEi+74C4Thbg=="; 5727 + url = "https://registry.npmjs.org/i18next-http-backend/-/i18next-http-backend-1.4.5.tgz"; 5728 + sha512 = "tLuHWuLWl6CmS07o+UB6EcQCaUjrZ1yhdseIN7sfq0u7phsMePJ8pqlGhIAdRDPF/q7ooyo5MID5DRFBCH+x5w=="; 5738 5729 }; 5739 5730 }; 5740 5731 "iconv-lite-0.4.24" = { ··· 5764 5755 sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="; 5765 5756 }; 5766 5757 }; 5767 - "idb-7.1.0" = { 5758 + "idb-7.1.1" = { 5768 5759 name = "idb"; 5769 5760 packageName = "idb"; 5770 - version = "7.1.0"; 5761 + version = "7.1.1"; 5771 5762 src = fetchurl { 5772 - url = "https://registry.npmjs.org/idb/-/idb-7.1.0.tgz"; 5773 - sha512 = "Wsk07aAxDsntgYJY4h0knZJuTxM73eQ4reRAO+Z1liOh8eMCJ/MoDS8fCui1vGT9mnjtl1sOu3I2i/W1swPYZg=="; 5763 + url = "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz"; 5764 + sha512 = "gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ=="; 5774 5765 }; 5775 5766 }; 5776 5767 "identity-obj-proxy-3.0.0" = { ··· 5791 5782 sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; 5792 5783 }; 5793 5784 }; 5794 - "immer-9.0.15" = { 5785 + "immer-9.0.16" = { 5795 5786 name = "immer"; 5796 5787 packageName = "immer"; 5797 - version = "9.0.15"; 5788 + version = "9.0.16"; 5798 5789 src = fetchurl { 5799 - url = "https://registry.npmjs.org/immer/-/immer-9.0.15.tgz"; 5800 - sha512 = "2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ=="; 5790 + url = "https://registry.npmjs.org/immer/-/immer-9.0.16.tgz"; 5791 + sha512 = "qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ=="; 5801 5792 }; 5802 5793 }; 5803 5794 "import-fresh-3.3.0" = { ··· 5935 5926 sha512 = "1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="; 5936 5927 }; 5937 5928 }; 5938 - "is-core-module-2.10.0" = { 5929 + "is-core-module-2.11.0" = { 5939 5930 name = "is-core-module"; 5940 5931 packageName = "is-core-module"; 5941 - version = "2.10.0"; 5932 + version = "2.11.0"; 5942 5933 src = fetchurl { 5943 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz"; 5944 - sha512 = "Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg=="; 5934 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"; 5935 + sha512 = "RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="; 5945 5936 }; 5946 5937 }; 5947 5938 "is-date-object-1.0.5" = { ··· 6041 6032 src = fetchurl { 6042 6033 url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"; 6043 6034 sha512 = "l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg=="; 6035 + }; 6036 + }; 6037 + "is-path-inside-3.0.3" = { 6038 + name = "is-path-inside"; 6039 + packageName = "is-path-inside"; 6040 + version = "3.0.3"; 6041 + src = fetchurl { 6042 + url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"; 6043 + sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; 6044 6044 }; 6045 6045 }; 6046 6046 "is-plain-obj-3.0.0" = { ··· 6178 6178 sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 6179 6179 }; 6180 6180 }; 6181 - "istanbul-lib-instrument-5.2.0" = { 6181 + "istanbul-lib-instrument-5.2.1" = { 6182 6182 name = "istanbul-lib-instrument"; 6183 6183 packageName = "istanbul-lib-instrument"; 6184 - version = "5.2.0"; 6184 + version = "5.2.1"; 6185 6185 src = fetchurl { 6186 - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz"; 6187 - sha512 = "6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A=="; 6186 + url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz"; 6187 + sha512 = "pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg=="; 6188 6188 }; 6189 6189 }; 6190 6190 "istanbul-lib-report-3.0.0" = { ··· 6385 6385 sha512 = "K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og=="; 6386 6386 }; 6387 6387 }; 6388 - "jest-pnp-resolver-1.2.2" = { 6388 + "jest-pnp-resolver-1.2.3" = { 6389 6389 name = "jest-pnp-resolver"; 6390 6390 packageName = "jest-pnp-resolver"; 6391 - version = "1.2.2"; 6391 + version = "1.2.3"; 6392 6392 src = fetchurl { 6393 - url = "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz"; 6394 - sha512 = "olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w=="; 6393 + url = "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz"; 6394 + sha512 = "+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w=="; 6395 6395 }; 6396 6396 }; 6397 6397 "jest-regex-util-27.5.1" = { ··· 6547 6547 sha512 = "CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g=="; 6548 6548 }; 6549 6549 }; 6550 - "js-base64-3.7.2" = { 6550 + "js-base64-3.7.3" = { 6551 6551 name = "js-base64"; 6552 6552 packageName = "js-base64"; 6553 - version = "3.7.2"; 6553 + version = "3.7.3"; 6554 6554 src = fetchurl { 6555 - url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.2.tgz"; 6556 - sha512 = "NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ=="; 6555 + url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.3.tgz"; 6556 + sha512 = "PAr6Xg2jvd7MCR6Ld9Jg3BmTcjYsHEBx1VlwEwULb/qowPf5VD9kEMagj23Gm7JRnSvE/Da/57nChZjnvL8v6A=="; 6557 6557 }; 6558 6558 }; 6559 - "js-sdsl-4.1.4" = { 6559 + "js-sdsl-4.1.5" = { 6560 6560 name = "js-sdsl"; 6561 6561 packageName = "js-sdsl"; 6562 - version = "4.1.4"; 6562 + version = "4.1.5"; 6563 6563 src = fetchurl { 6564 - url = "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz"; 6565 - sha512 = "Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw=="; 6564 + url = "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz"; 6565 + sha512 = "08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q=="; 6566 6566 }; 6567 6567 }; 6568 6568 "js-tokens-4.0.0" = { ··· 6808 6808 sha512 = "3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg=="; 6809 6809 }; 6810 6810 }; 6811 - "loader-utils-2.0.2" = { 6811 + "loader-utils-2.0.4" = { 6812 6812 name = "loader-utils"; 6813 6813 packageName = "loader-utils"; 6814 - version = "2.0.2"; 6814 + version = "2.0.4"; 6815 6815 src = fetchurl { 6816 - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz"; 6817 - sha512 = "TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A=="; 6816 + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz"; 6817 + sha512 = "xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw=="; 6818 6818 }; 6819 6819 }; 6820 - "loader-utils-3.2.0" = { 6820 + "loader-utils-3.2.1" = { 6821 6821 name = "loader-utils"; 6822 6822 packageName = "loader-utils"; 6823 - version = "3.2.0"; 6823 + version = "3.2.1"; 6824 6824 src = fetchurl { 6825 - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz"; 6826 - sha512 = "HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ=="; 6825 + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz"; 6826 + sha512 = "ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw=="; 6827 6827 }; 6828 6828 }; 6829 6829 "locate-path-3.0.0" = { ··· 6988 6988 sha512 = "dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="; 6989 6989 }; 6990 6990 }; 6991 - "memfs-3.4.7" = { 6991 + "memfs-3.4.11" = { 6992 6992 name = "memfs"; 6993 6993 packageName = "memfs"; 6994 - version = "3.4.7"; 6994 + version = "3.4.11"; 6995 6995 src = fetchurl { 6996 - url = "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz"; 6997 - sha512 = "ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw=="; 6996 + url = "https://registry.npmjs.org/memfs/-/memfs-3.4.11.tgz"; 6997 + sha512 = "GvsCITGAyDCxxsJ+X6prJexFQEhOCJaIlUbsAvjzSI5o5O7j2dle3jWvz5Z5aOdpOxW6ol3vI1+0ut+641F1+w=="; 6998 6998 }; 6999 6999 }; 7000 7000 "merge-descriptors-1.0.1" = { ··· 7078 7078 sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; 7079 7079 }; 7080 7080 }; 7081 - "mini-css-extract-plugin-2.6.1" = { 7081 + "mini-css-extract-plugin-2.7.0" = { 7082 7082 name = "mini-css-extract-plugin"; 7083 7083 packageName = "mini-css-extract-plugin"; 7084 - version = "2.6.1"; 7084 + version = "2.7.0"; 7085 7085 src = fetchurl { 7086 - url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz"; 7087 - sha512 = "wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg=="; 7086 + url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.0.tgz"; 7087 + sha512 = "auqtVo8KhTScMsba7MbijqZTfibbXiBNlPAQbsVt7enQfcDYLdgG57eGxMqwVU3mfeWANY4F1wUg+rMF+ycZgw=="; 7088 7088 }; 7089 7089 }; 7090 7090 "minimalistic-assert-1.0.1" = { ··· 7096 7096 sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="; 7097 7097 }; 7098 7098 }; 7099 - "minimatch-3.0.4" = { 7100 - name = "minimatch"; 7101 - packageName = "minimatch"; 7102 - version = "3.0.4"; 7103 - src = fetchurl { 7104 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 7105 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 7106 - }; 7107 - }; 7108 7099 "minimatch-3.1.2" = { 7109 7100 name = "minimatch"; 7110 7101 packageName = "minimatch"; ··· 7123 7114 sha512 = "9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg=="; 7124 7115 }; 7125 7116 }; 7126 - "minimist-1.2.6" = { 7117 + "minimist-1.2.7" = { 7127 7118 name = "minimist"; 7128 7119 packageName = "minimist"; 7129 - version = "1.2.6"; 7120 + version = "1.2.7"; 7130 7121 src = fetchurl { 7131 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz"; 7132 - sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 7122 + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"; 7123 + sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; 7133 7124 }; 7134 7125 }; 7135 7126 "mkdirp-0.5.6" = { ··· 7193 7184 src = fetchurl { 7194 7185 url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; 7195 7186 sha512 = "OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="; 7187 + }; 7188 + }; 7189 + "natural-compare-lite-1.4.0" = { 7190 + name = "natural-compare-lite"; 7191 + packageName = "natural-compare-lite"; 7192 + version = "1.4.0"; 7193 + src = fetchurl { 7194 + url = "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz"; 7195 + sha512 = "Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g=="; 7196 7196 }; 7197 7197 }; 7198 7198 "negotiator-0.6.3" = { ··· 7366 7366 sha512 = "1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="; 7367 7367 }; 7368 7368 }; 7369 - "object.entries-1.1.5" = { 7369 + "object.entries-1.1.6" = { 7370 7370 name = "object.entries"; 7371 7371 packageName = "object.entries"; 7372 - version = "1.1.5"; 7372 + version = "1.1.6"; 7373 7373 src = fetchurl { 7374 - url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz"; 7375 - sha512 = "TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g=="; 7374 + url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz"; 7375 + sha512 = "leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w=="; 7376 7376 }; 7377 7377 }; 7378 - "object.fromentries-2.0.5" = { 7378 + "object.fromentries-2.0.6" = { 7379 7379 name = "object.fromentries"; 7380 7380 packageName = "object.fromentries"; 7381 - version = "2.0.5"; 7381 + version = "2.0.6"; 7382 7382 src = fetchurl { 7383 - url = "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz"; 7384 - sha512 = "CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw=="; 7383 + url = "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz"; 7384 + sha512 = "VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg=="; 7385 7385 }; 7386 7386 }; 7387 - "object.getownpropertydescriptors-2.1.4" = { 7387 + "object.getownpropertydescriptors-2.1.5" = { 7388 7388 name = "object.getownpropertydescriptors"; 7389 7389 packageName = "object.getownpropertydescriptors"; 7390 - version = "2.1.4"; 7390 + version = "2.1.5"; 7391 7391 src = fetchurl { 7392 - url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz"; 7393 - sha512 = "sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ=="; 7392 + url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz"; 7393 + sha512 = "yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw=="; 7394 7394 }; 7395 7395 }; 7396 - "object.hasown-1.1.1" = { 7396 + "object.hasown-1.1.2" = { 7397 7397 name = "object.hasown"; 7398 7398 packageName = "object.hasown"; 7399 - version = "1.1.1"; 7399 + version = "1.1.2"; 7400 7400 src = fetchurl { 7401 - url = "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz"; 7402 - sha512 = "LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A=="; 7401 + url = "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz"; 7402 + sha512 = "B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw=="; 7403 7403 }; 7404 7404 }; 7405 - "object.values-1.1.5" = { 7405 + "object.values-1.1.6" = { 7406 7406 name = "object.values"; 7407 7407 packageName = "object.values"; 7408 - version = "1.1.5"; 7408 + version = "1.1.6"; 7409 7409 src = fetchurl { 7410 - url = "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz"; 7411 - sha512 = "QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg=="; 7410 + url = "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz"; 7411 + sha512 = "FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw=="; 7412 7412 }; 7413 7413 }; 7414 7414 "obuf-1.1.2" = { ··· 7744 7744 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 7745 7745 }; 7746 7746 }; 7747 - "postcss-8.4.16" = { 7747 + "postcss-8.4.19" = { 7748 7748 name = "postcss"; 7749 7749 packageName = "postcss"; 7750 - version = "8.4.16"; 7750 + version = "8.4.19"; 7751 7751 src = fetchurl { 7752 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz"; 7753 - sha512 = "ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ=="; 7752 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz"; 7753 + sha512 = "h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA=="; 7754 7754 }; 7755 7755 }; 7756 7756 "postcss-attribute-case-insensitive-5.0.2" = { ··· 7825 7825 sha512 = "WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg=="; 7826 7826 }; 7827 7827 }; 7828 - "postcss-convert-values-5.1.2" = { 7828 + "postcss-convert-values-5.1.3" = { 7829 7829 name = "postcss-convert-values"; 7830 7830 packageName = "postcss-convert-values"; 7831 - version = "5.1.2"; 7831 + version = "5.1.3"; 7832 7832 src = fetchurl { 7833 - url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz"; 7834 - sha512 = "c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g=="; 7833 + url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz"; 7834 + sha512 = "82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA=="; 7835 7835 }; 7836 7836 }; 7837 7837 "postcss-custom-media-8.0.2" = { ··· 7843 7843 sha512 = "7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg=="; 7844 7844 }; 7845 7845 }; 7846 - "postcss-custom-properties-12.1.9" = { 7846 + "postcss-custom-properties-12.1.10" = { 7847 7847 name = "postcss-custom-properties"; 7848 7848 packageName = "postcss-custom-properties"; 7849 - version = "12.1.9"; 7849 + version = "12.1.10"; 7850 7850 src = fetchurl { 7851 - url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.9.tgz"; 7852 - sha512 = "/E7PRvK8DAVljBbeWrcEQJPG72jaImxF3vvCNFwv9cC8CzigVoNIpeyfnJzphnN3Fd8/auBf5wvkw6W9MfmTyg=="; 7851 + url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.10.tgz"; 7852 + sha512 = "U3BHdgrYhCrwTVcByFHs9EOBoqcKq4Lf3kXwbTi4hhq0qWhl/pDWq2THbv/ICX/Fl9KqeHBb8OVrTf2OaYF07A=="; 7853 7853 }; 7854 7854 }; 7855 7855 "postcss-custom-selectors-6.0.3" = { ··· 8050 8050 sha512 = "yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ=="; 8051 8051 }; 8052 8052 }; 8053 - "postcss-merge-longhand-5.1.6" = { 8053 + "postcss-merge-longhand-5.1.7" = { 8054 8054 name = "postcss-merge-longhand"; 8055 8055 packageName = "postcss-merge-longhand"; 8056 - version = "5.1.6"; 8056 + version = "5.1.7"; 8057 8057 src = fetchurl { 8058 - url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz"; 8059 - sha512 = "6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw=="; 8058 + url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz"; 8059 + sha512 = "YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ=="; 8060 8060 }; 8061 8061 }; 8062 - "postcss-merge-rules-5.1.2" = { 8062 + "postcss-merge-rules-5.1.3" = { 8063 8063 name = "postcss-merge-rules"; 8064 8064 packageName = "postcss-merge-rules"; 8065 - version = "5.1.2"; 8065 + version = "5.1.3"; 8066 8066 src = fetchurl { 8067 - url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz"; 8068 - sha512 = "zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ=="; 8067 + url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz"; 8068 + sha512 = "LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA=="; 8069 8069 }; 8070 8070 }; 8071 8071 "postcss-minify-font-values-5.1.0" = { ··· 8086 8086 sha512 = "VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw=="; 8087 8087 }; 8088 8088 }; 8089 - "postcss-minify-params-5.1.3" = { 8089 + "postcss-minify-params-5.1.4" = { 8090 8090 name = "postcss-minify-params"; 8091 8091 packageName = "postcss-minify-params"; 8092 - version = "5.1.3"; 8092 + version = "5.1.4"; 8093 8093 src = fetchurl { 8094 - url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz"; 8095 - sha512 = "bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg=="; 8094 + url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz"; 8095 + sha512 = "+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw=="; 8096 8096 }; 8097 8097 }; 8098 8098 "postcss-minify-selectors-5.2.1" = { ··· 8140 8140 sha512 = "RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ=="; 8141 8141 }; 8142 8142 }; 8143 - "postcss-nested-5.0.6" = { 8143 + "postcss-nested-6.0.0" = { 8144 8144 name = "postcss-nested"; 8145 8145 packageName = "postcss-nested"; 8146 - version = "5.0.6"; 8146 + version = "6.0.0"; 8147 8147 src = fetchurl { 8148 - url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz"; 8149 - sha512 = "rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA=="; 8148 + url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz"; 8149 + sha512 = "0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w=="; 8150 8150 }; 8151 8151 }; 8152 8152 "postcss-nesting-10.2.0" = { ··· 8221 8221 sha512 = "DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg=="; 8222 8222 }; 8223 8223 }; 8224 - "postcss-normalize-unicode-5.1.0" = { 8224 + "postcss-normalize-unicode-5.1.1" = { 8225 8225 name = "postcss-normalize-unicode"; 8226 8226 packageName = "postcss-normalize-unicode"; 8227 - version = "5.1.0"; 8227 + version = "5.1.1"; 8228 8228 src = fetchurl { 8229 - url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz"; 8230 - sha512 = "J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ=="; 8229 + url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz"; 8230 + sha512 = "qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA=="; 8231 8231 }; 8232 8232 }; 8233 8233 "postcss-normalize-url-5.1.0" = { ··· 8293 8293 sha512 = "wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g=="; 8294 8294 }; 8295 8295 }; 8296 - "postcss-preset-env-7.8.2" = { 8296 + "postcss-preset-env-7.8.3" = { 8297 8297 name = "postcss-preset-env"; 8298 8298 packageName = "postcss-preset-env"; 8299 - version = "7.8.2"; 8299 + version = "7.8.3"; 8300 8300 src = fetchurl { 8301 - url = "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.2.tgz"; 8302 - sha512 = "rSMUEaOCnovKnwc5LvBDHUDzpGP+nrUeWZGWt9M72fBvckCi45JmnJigUr4QG4zZeOHmOCNCZnd2LKDvP++ZuQ=="; 8301 + url = "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz"; 8302 + sha512 = "T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag=="; 8303 8303 }; 8304 8304 }; 8305 8305 "postcss-pseudo-class-any-link-7.1.6" = { ··· 8311 8311 sha512 = "9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w=="; 8312 8312 }; 8313 8313 }; 8314 - "postcss-reduce-initial-5.1.0" = { 8314 + "postcss-reduce-initial-5.1.1" = { 8315 8315 name = "postcss-reduce-initial"; 8316 8316 packageName = "postcss-reduce-initial"; 8317 - version = "5.1.0"; 8317 + version = "5.1.1"; 8318 8318 src = fetchurl { 8319 - url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz"; 8320 - sha512 = "5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw=="; 8319 + url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz"; 8320 + sha512 = "//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w=="; 8321 8321 }; 8322 8322 }; 8323 8323 "postcss-reduce-transforms-5.1.0" = { ··· 8446 8446 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 8447 8447 }; 8448 8448 }; 8449 - "promise-8.2.0" = { 8449 + "promise-8.3.0" = { 8450 8450 name = "promise"; 8451 8451 packageName = "promise"; 8452 - version = "8.2.0"; 8452 + version = "8.3.0"; 8453 8453 src = fetchurl { 8454 - url = "https://registry.npmjs.org/promise/-/promise-8.2.0.tgz"; 8455 - sha512 = "+CMAlLHqwRYwBMXKCP+o8ns7DN+xHDUiI+0nArsiJ9y+kJVPLFxEaSw6Ha9s9H0tftxg2Yzl25wqj9G7m5wLZg=="; 8454 + url = "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz"; 8455 + sha512 = "rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg=="; 8456 8456 }; 8457 8457 }; 8458 8458 "prompts-2.4.2" = { ··· 8509 8509 sha512 = "kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw=="; 8510 8510 }; 8511 8511 }; 8512 - "qs-6.10.3" = { 8512 + "qs-6.11.0" = { 8513 8513 name = "qs"; 8514 8514 packageName = "qs"; 8515 - version = "6.10.3"; 8515 + version = "6.11.0"; 8516 8516 src = fetchurl { 8517 - url = "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz"; 8518 - sha512 = "wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ=="; 8517 + url = "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz"; 8518 + sha512 = "MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q=="; 8519 8519 }; 8520 8520 }; 8521 8521 "querystringify-2.2.0" = { ··· 8680 8680 sha512 = "F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A=="; 8681 8681 }; 8682 8682 }; 8683 - "react-router-6.4.1" = { 8683 + "react-router-6.4.3" = { 8684 8684 name = "react-router"; 8685 8685 packageName = "react-router"; 8686 - version = "6.4.1"; 8686 + version = "6.4.3"; 8687 8687 src = fetchurl { 8688 - url = "https://registry.npmjs.org/react-router/-/react-router-6.4.1.tgz"; 8689 - sha512 = "OJASKp5AykDWFewgWUim1vlLr7yfD4vO/h+bSgcP/ix8Md+LMHuAjovA74MQfsfhQJGGN1nHRhwS5qQQbbBt3A=="; 8688 + url = "https://registry.npmjs.org/react-router/-/react-router-6.4.3.tgz"; 8689 + sha512 = "BT6DoGn6aV1FVP5yfODMOiieakp3z46P1Fk0RNzJMACzE7C339sFuHebfvWtnB4pzBvXXkHP2vscJzWRuUjTtA=="; 8690 8690 }; 8691 8691 }; 8692 - "react-router-dom-6.4.1" = { 8692 + "react-router-dom-6.4.3" = { 8693 8693 name = "react-router-dom"; 8694 8694 packageName = "react-router-dom"; 8695 - version = "6.4.1"; 8695 + version = "6.4.3"; 8696 8696 src = fetchurl { 8697 - url = "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.4.1.tgz"; 8698 - sha512 = "MY7NJCrGNVJtGp8ODMOBHu20UaIkmwD2V3YsAOUQoCXFk7Ppdwf55RdcGyrSj+ycSL9Uiwrb3gTLYSnzcRoXww=="; 8697 + url = "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.4.3.tgz"; 8698 + sha512 = "MiaYQU8CwVCaOfJdYvt84KQNjT78VF0TJrA17SIQgNHRvLnXDJO6qsFqq8F/zzB1BWZjCFIrQpu4QxcshitziQ=="; 8699 8699 }; 8700 8700 }; 8701 8701 "react-scripts-5.0.1" = { ··· 8752 8752 sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 8753 8753 }; 8754 8754 }; 8755 - "recursive-readdir-2.2.2" = { 8755 + "recursive-readdir-2.2.3" = { 8756 8756 name = "recursive-readdir"; 8757 8757 packageName = "recursive-readdir"; 8758 - version = "2.2.2"; 8758 + version = "2.2.3"; 8759 8759 src = fetchurl { 8760 - url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz"; 8761 - sha512 = "nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg=="; 8760 + url = "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz"; 8761 + sha512 = "8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA=="; 8762 8762 }; 8763 8763 }; 8764 8764 "regenerate-1.4.2" = { ··· 8779 8779 sha512 = "d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ=="; 8780 8780 }; 8781 8781 }; 8782 - "regenerator-runtime-0.13.9" = { 8782 + "regenerator-runtime-0.13.11" = { 8783 8783 name = "regenerator-runtime"; 8784 8784 packageName = "regenerator-runtime"; 8785 - version = "0.13.9"; 8785 + version = "0.13.11"; 8786 8786 src = fetchurl { 8787 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; 8788 - sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 8787 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"; 8788 + sha512 = "kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="; 8789 8789 }; 8790 8790 }; 8791 - "regenerator-transform-0.15.0" = { 8791 + "regenerator-transform-0.15.1" = { 8792 8792 name = "regenerator-transform"; 8793 8793 packageName = "regenerator-transform"; 8794 - version = "0.15.0"; 8794 + version = "0.15.1"; 8795 8795 src = fetchurl { 8796 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz"; 8797 - sha512 = "LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg=="; 8796 + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz"; 8797 + sha512 = "knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg=="; 8798 8798 }; 8799 8799 }; 8800 8800 "regex-parser-2.2.11" = { ··· 8824 8824 sha512 = "pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="; 8825 8825 }; 8826 8826 }; 8827 - "regexpu-core-5.2.1" = { 8827 + "regexpu-core-5.2.2" = { 8828 8828 name = "regexpu-core"; 8829 8829 packageName = "regexpu-core"; 8830 - version = "5.2.1"; 8830 + version = "5.2.2"; 8831 8831 src = fetchurl { 8832 - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz"; 8833 - sha512 = "HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ=="; 8832 + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz"; 8833 + sha512 = "T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw=="; 8834 8834 }; 8835 8835 }; 8836 8836 "regjsgen-0.7.1" = { ··· 9157 9157 sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 9158 9158 }; 9159 9159 }; 9160 - "semver-7.3.7" = { 9160 + "semver-7.3.8" = { 9161 9161 name = "semver"; 9162 9162 packageName = "semver"; 9163 - version = "7.3.7"; 9163 + version = "7.3.8"; 9164 9164 src = fetchurl { 9165 - url = "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz"; 9166 - sha512 = "QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="; 9165 + url = "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"; 9166 + sha512 = "NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="; 9167 9167 }; 9168 9168 }; 9169 9169 "send-0.18.0" = { ··· 9247 9247 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 9248 9248 }; 9249 9249 }; 9250 - "shell-quote-1.7.3" = { 9250 + "shell-quote-1.7.4" = { 9251 9251 name = "shell-quote"; 9252 9252 packageName = "shell-quote"; 9253 - version = "1.7.3"; 9253 + version = "1.7.4"; 9254 9254 src = fetchurl { 9255 - url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz"; 9256 - sha512 = "Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw=="; 9255 + url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.4.tgz"; 9256 + sha512 = "8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw=="; 9257 9257 }; 9258 9258 }; 9259 9259 "side-channel-1.0.4" = { ··· 9373 9373 sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="; 9374 9374 }; 9375 9375 }; 9376 - "source-map-loader-3.0.1" = { 9376 + "source-map-loader-3.0.2" = { 9377 9377 name = "source-map-loader"; 9378 9378 packageName = "source-map-loader"; 9379 - version = "3.0.1"; 9379 + version = "3.0.2"; 9380 9380 src = fetchurl { 9381 - url = "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz"; 9382 - sha512 = "Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA=="; 9381 + url = "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz"; 9382 + sha512 = "BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg=="; 9383 9383 }; 9384 9384 }; 9385 9385 "source-map-support-0.5.21" = { ··· 9445 9445 sha512 = "mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ=="; 9446 9446 }; 9447 9447 }; 9448 - "stack-utils-2.0.5" = { 9448 + "stack-utils-2.0.6" = { 9449 9449 name = "stack-utils"; 9450 9450 packageName = "stack-utils"; 9451 - version = "2.0.5"; 9451 + version = "2.0.6"; 9452 9452 src = fetchurl { 9453 - url = "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz"; 9454 - sha512 = "xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA=="; 9453 + url = "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz"; 9454 + sha512 = "XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ=="; 9455 9455 }; 9456 9456 }; 9457 9457 "stackframe-1.3.4" = { ··· 9535 9535 sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 9536 9536 }; 9537 9537 }; 9538 - "string.prototype.matchall-4.0.7" = { 9538 + "string.prototype.matchall-4.0.8" = { 9539 9539 name = "string.prototype.matchall"; 9540 9540 packageName = "string.prototype.matchall"; 9541 - version = "4.0.7"; 9541 + version = "4.0.8"; 9542 9542 src = fetchurl { 9543 - url = "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz"; 9544 - sha512 = "f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg=="; 9543 + url = "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz"; 9544 + sha512 = "6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg=="; 9545 9545 }; 9546 9546 }; 9547 - "string.prototype.trimend-1.0.5" = { 9547 + "string.prototype.trimend-1.0.6" = { 9548 9548 name = "string.prototype.trimend"; 9549 9549 packageName = "string.prototype.trimend"; 9550 - version = "1.0.5"; 9550 + version = "1.0.6"; 9551 9551 src = fetchurl { 9552 - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz"; 9553 - sha512 = "I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog=="; 9552 + url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz"; 9553 + sha512 = "JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ=="; 9554 9554 }; 9555 9555 }; 9556 - "string.prototype.trimstart-1.0.5" = { 9556 + "string.prototype.trimstart-1.0.6" = { 9557 9557 name = "string.prototype.trimstart"; 9558 9558 packageName = "string.prototype.trimstart"; 9559 - version = "1.0.5"; 9559 + version = "1.0.6"; 9560 9560 src = fetchurl { 9561 - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz"; 9562 - sha512 = "THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg=="; 9561 + url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz"; 9562 + sha512 = "omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA=="; 9563 9563 }; 9564 9564 }; 9565 9565 "string_decoder-1.1.1" = { ··· 9661 9661 sha512 = "GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ=="; 9662 9662 }; 9663 9663 }; 9664 - "stylehacks-5.1.0" = { 9664 + "stylehacks-5.1.1" = { 9665 9665 name = "stylehacks"; 9666 9666 packageName = "stylehacks"; 9667 - version = "5.1.0"; 9667 + version = "5.1.1"; 9668 9668 src = fetchurl { 9669 - url = "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz"; 9670 - sha512 = "SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q=="; 9669 + url = "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz"; 9670 + sha512 = "sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw=="; 9671 9671 }; 9672 9672 }; 9673 - "stylis-4.0.13" = { 9673 + "stylis-4.1.3" = { 9674 9674 name = "stylis"; 9675 9675 packageName = "stylis"; 9676 - version = "4.0.13"; 9676 + version = "4.1.3"; 9677 9677 src = fetchurl { 9678 - url = "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz"; 9679 - sha512 = "xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag=="; 9678 + url = "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz"; 9679 + sha512 = "GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA=="; 9680 9680 }; 9681 9681 }; 9682 9682 "supports-color-5.5.0" = { ··· 9760 9760 sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; 9761 9761 }; 9762 9762 }; 9763 - "tailwindcss-3.1.8" = { 9763 + "tailwindcss-3.2.4" = { 9764 9764 name = "tailwindcss"; 9765 9765 packageName = "tailwindcss"; 9766 - version = "3.1.8"; 9766 + version = "3.2.4"; 9767 9767 src = fetchurl { 9768 - url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.8.tgz"; 9769 - sha512 = "YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g=="; 9768 + url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz"; 9769 + sha512 = "AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ=="; 9770 9770 }; 9771 9771 }; 9772 9772 "tapable-1.1.3" = { ··· 9814 9814 sha512 = "un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="; 9815 9815 }; 9816 9816 }; 9817 - "terser-5.15.0" = { 9817 + "terser-5.15.1" = { 9818 9818 name = "terser"; 9819 9819 packageName = "terser"; 9820 - version = "5.15.0"; 9820 + version = "5.15.1"; 9821 9821 src = fetchurl { 9822 - url = "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz"; 9823 - sha512 = "L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA=="; 9822 + url = "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz"; 9823 + sha512 = "K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw=="; 9824 9824 }; 9825 9825 }; 9826 9826 "terser-webpack-plugin-5.3.6" = { ··· 9976 9976 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 9977 9977 }; 9978 9978 }; 9979 - "tslib-2.4.0" = { 9979 + "tslib-2.4.1" = { 9980 9980 name = "tslib"; 9981 9981 packageName = "tslib"; 9982 - version = "2.4.0"; 9982 + version = "2.4.1"; 9983 9983 src = fetchurl { 9984 - url = "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"; 9985 - sha512 = "d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="; 9984 + url = "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz"; 9985 + sha512 = "tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA=="; 9986 9986 }; 9987 9987 }; 9988 9988 "tsutils-3.21.0" = { ··· 10066 10066 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 10067 10067 }; 10068 10068 }; 10069 - "typescript-4.8.3" = { 10069 + "typescript-4.9.3" = { 10070 10070 name = "typescript"; 10071 10071 packageName = "typescript"; 10072 - version = "4.8.3"; 10072 + version = "4.9.3"; 10073 10073 src = fetchurl { 10074 - url = "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz"; 10075 - sha512 = "goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig=="; 10074 + url = "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz"; 10075 + sha512 = "CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA=="; 10076 10076 }; 10077 10077 }; 10078 10078 "unbox-primitive-1.0.2" = { ··· 10102 10102 sha512 = "5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="; 10103 10103 }; 10104 10104 }; 10105 - "unicode-match-property-value-ecmascript-2.0.0" = { 10105 + "unicode-match-property-value-ecmascript-2.1.0" = { 10106 10106 name = "unicode-match-property-value-ecmascript"; 10107 10107 packageName = "unicode-match-property-value-ecmascript"; 10108 - version = "2.0.0"; 10108 + version = "2.1.0"; 10109 10109 src = fetchurl { 10110 - url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"; 10111 - sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="; 10110 + url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz"; 10111 + sha512 = "qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA=="; 10112 10112 }; 10113 10113 }; 10114 10114 "unicode-property-aliases-ecmascript-2.1.0" = { ··· 10174 10174 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 10175 10175 }; 10176 10176 }; 10177 - "update-browserslist-db-1.0.9" = { 10177 + "update-browserslist-db-1.0.10" = { 10178 10178 name = "update-browserslist-db"; 10179 10179 packageName = "update-browserslist-db"; 10180 - version = "1.0.9"; 10180 + version = "1.0.10"; 10181 10181 src = fetchurl { 10182 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz"; 10183 - sha512 = "/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg=="; 10182 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"; 10183 + sha512 = "OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ=="; 10184 10184 }; 10185 10185 }; 10186 10186 "uri-js-4.4.1" = { ··· 10354 10354 sha512 = "qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="; 10355 10355 }; 10356 10356 }; 10357 - "webpack-5.74.0" = { 10357 + "webpack-5.75.0" = { 10358 10358 name = "webpack"; 10359 10359 packageName = "webpack"; 10360 - version = "5.74.0"; 10360 + version = "5.75.0"; 10361 10361 src = fetchurl { 10362 - url = "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz"; 10363 - sha512 = "A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA=="; 10362 + url = "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz"; 10363 + sha512 = "piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ=="; 10364 10364 }; 10365 10365 }; 10366 10366 "webpack-dev-middleware-5.3.3" = { ··· 10714 10714 sha512 = "F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q=="; 10715 10715 }; 10716 10716 }; 10717 - "ws-8.9.0" = { 10717 + "ws-8.11.0" = { 10718 10718 name = "ws"; 10719 10719 packageName = "ws"; 10720 - version = "8.9.0"; 10720 + version = "8.11.0"; 10721 10721 src = fetchurl { 10722 - url = "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz"; 10723 - sha512 = "Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg=="; 10722 + url = "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz"; 10723 + sha512 = "HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg=="; 10724 10724 }; 10725 10725 }; 10726 10726 "xml-name-validator-3.0.0" = { ··· 10813 10813 dependencies = [ 10814 10814 sources."@ampproject/remapping-2.2.0" 10815 10815 sources."@babel/code-frame-7.18.6" 10816 - sources."@babel/compat-data-7.19.1" 10817 - sources."@babel/core-7.19.1" 10816 + sources."@babel/compat-data-7.20.1" 10817 + sources."@babel/core-7.20.2" 10818 10818 (sources."@babel/eslint-parser-7.19.1" // { 10819 10819 dependencies = [ 10820 10820 sources."eslint-visitor-keys-2.1.0" 10821 10821 ]; 10822 10822 }) 10823 - (sources."@babel/generator-7.19.0" // { 10823 + (sources."@babel/generator-7.20.4" // { 10824 10824 dependencies = [ 10825 10825 sources."@jridgewell/gen-mapping-0.3.2" 10826 10826 ]; 10827 10827 }) 10828 10828 sources."@babel/helper-annotate-as-pure-7.18.6" 10829 10829 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" 10830 - sources."@babel/helper-compilation-targets-7.19.1" 10831 - sources."@babel/helper-create-class-features-plugin-7.19.0" 10830 + sources."@babel/helper-compilation-targets-7.20.0" 10831 + sources."@babel/helper-create-class-features-plugin-7.20.2" 10832 10832 sources."@babel/helper-create-regexp-features-plugin-7.19.0" 10833 10833 sources."@babel/helper-define-polyfill-provider-0.3.3" 10834 10834 sources."@babel/helper-environment-visitor-7.18.9" ··· 10837 10837 sources."@babel/helper-hoist-variables-7.18.6" 10838 10838 sources."@babel/helper-member-expression-to-functions-7.18.9" 10839 10839 sources."@babel/helper-module-imports-7.18.6" 10840 - sources."@babel/helper-module-transforms-7.19.0" 10840 + sources."@babel/helper-module-transforms-7.20.2" 10841 10841 sources."@babel/helper-optimise-call-expression-7.18.6" 10842 - sources."@babel/helper-plugin-utils-7.19.0" 10842 + sources."@babel/helper-plugin-utils-7.20.2" 10843 10843 sources."@babel/helper-remap-async-to-generator-7.18.9" 10844 10844 sources."@babel/helper-replace-supers-7.19.1" 10845 - sources."@babel/helper-simple-access-7.18.6" 10846 - sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" 10845 + sources."@babel/helper-simple-access-7.20.2" 10846 + sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0" 10847 10847 sources."@babel/helper-split-export-declaration-7.18.6" 10848 - sources."@babel/helper-string-parser-7.18.10" 10848 + sources."@babel/helper-string-parser-7.19.4" 10849 10849 sources."@babel/helper-validator-identifier-7.19.1" 10850 10850 sources."@babel/helper-validator-option-7.18.6" 10851 10851 sources."@babel/helper-wrap-function-7.19.0" 10852 - sources."@babel/helpers-7.19.0" 10852 + sources."@babel/helpers-7.20.1" 10853 10853 sources."@babel/highlight-7.18.6" 10854 - sources."@babel/parser-7.19.1" 10854 + sources."@babel/parser-7.20.3" 10855 10855 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" 10856 10856 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9" 10857 - sources."@babel/plugin-proposal-async-generator-functions-7.19.1" 10857 + sources."@babel/plugin-proposal-async-generator-functions-7.20.1" 10858 10858 sources."@babel/plugin-proposal-class-properties-7.18.6" 10859 10859 sources."@babel/plugin-proposal-class-static-block-7.18.6" 10860 - sources."@babel/plugin-proposal-decorators-7.19.1" 10860 + sources."@babel/plugin-proposal-decorators-7.20.2" 10861 10861 sources."@babel/plugin-proposal-dynamic-import-7.18.6" 10862 10862 sources."@babel/plugin-proposal-export-namespace-from-7.18.9" 10863 10863 sources."@babel/plugin-proposal-json-strings-7.18.6" 10864 10864 sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9" 10865 10865 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" 10866 10866 sources."@babel/plugin-proposal-numeric-separator-7.18.6" 10867 - sources."@babel/plugin-proposal-object-rest-spread-7.18.9" 10867 + sources."@babel/plugin-proposal-object-rest-spread-7.20.2" 10868 10868 sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" 10869 10869 sources."@babel/plugin-proposal-optional-chaining-7.18.9" 10870 10870 sources."@babel/plugin-proposal-private-methods-7.18.6" ··· 10878 10878 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 10879 10879 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 10880 10880 sources."@babel/plugin-syntax-flow-7.18.6" 10881 - sources."@babel/plugin-syntax-import-assertions-7.18.6" 10881 + sources."@babel/plugin-syntax-import-assertions-7.20.0" 10882 10882 sources."@babel/plugin-syntax-import-meta-7.10.4" 10883 10883 sources."@babel/plugin-syntax-json-strings-7.8.3" 10884 10884 sources."@babel/plugin-syntax-jsx-7.18.6" ··· 10890 10890 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 10891 10891 sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 10892 10892 sources."@babel/plugin-syntax-top-level-await-7.14.5" 10893 - sources."@babel/plugin-syntax-typescript-7.18.6" 10893 + sources."@babel/plugin-syntax-typescript-7.20.0" 10894 10894 sources."@babel/plugin-transform-arrow-functions-7.18.6" 10895 10895 sources."@babel/plugin-transform-async-to-generator-7.18.6" 10896 10896 sources."@babel/plugin-transform-block-scoped-functions-7.18.6" 10897 - sources."@babel/plugin-transform-block-scoping-7.18.9" 10898 - sources."@babel/plugin-transform-classes-7.19.0" 10897 + sources."@babel/plugin-transform-block-scoping-7.20.2" 10898 + sources."@babel/plugin-transform-classes-7.20.2" 10899 10899 sources."@babel/plugin-transform-computed-properties-7.18.9" 10900 - sources."@babel/plugin-transform-destructuring-7.18.13" 10900 + sources."@babel/plugin-transform-destructuring-7.20.2" 10901 10901 sources."@babel/plugin-transform-dotall-regex-7.18.6" 10902 10902 sources."@babel/plugin-transform-duplicate-keys-7.18.9" 10903 10903 sources."@babel/plugin-transform-exponentiation-operator-7.18.6" ··· 10906 10906 sources."@babel/plugin-transform-function-name-7.18.9" 10907 10907 sources."@babel/plugin-transform-literals-7.18.9" 10908 10908 sources."@babel/plugin-transform-member-expression-literals-7.18.6" 10909 - sources."@babel/plugin-transform-modules-amd-7.18.6" 10910 - sources."@babel/plugin-transform-modules-commonjs-7.18.6" 10911 - sources."@babel/plugin-transform-modules-systemjs-7.19.0" 10909 + sources."@babel/plugin-transform-modules-amd-7.19.6" 10910 + sources."@babel/plugin-transform-modules-commonjs-7.19.6" 10911 + sources."@babel/plugin-transform-modules-systemjs-7.19.6" 10912 10912 sources."@babel/plugin-transform-modules-umd-7.18.6" 10913 10913 sources."@babel/plugin-transform-named-capturing-groups-regex-7.19.1" 10914 10914 sources."@babel/plugin-transform-new-target-7.18.6" 10915 10915 sources."@babel/plugin-transform-object-super-7.18.6" 10916 - sources."@babel/plugin-transform-parameters-7.18.8" 10916 + sources."@babel/plugin-transform-parameters-7.20.3" 10917 10917 sources."@babel/plugin-transform-property-literals-7.18.6" 10918 - sources."@babel/plugin-transform-react-constant-elements-7.18.12" 10918 + sources."@babel/plugin-transform-react-constant-elements-7.20.2" 10919 10919 sources."@babel/plugin-transform-react-display-name-7.18.6" 10920 10920 sources."@babel/plugin-transform-react-jsx-7.19.0" 10921 10921 sources."@babel/plugin-transform-react-jsx-development-7.18.6" 10922 10922 sources."@babel/plugin-transform-react-pure-annotations-7.18.6" 10923 10923 sources."@babel/plugin-transform-regenerator-7.18.6" 10924 10924 sources."@babel/plugin-transform-reserved-words-7.18.6" 10925 - sources."@babel/plugin-transform-runtime-7.19.1" 10925 + sources."@babel/plugin-transform-runtime-7.19.6" 10926 10926 sources."@babel/plugin-transform-shorthand-properties-7.18.6" 10927 10927 sources."@babel/plugin-transform-spread-7.19.0" 10928 10928 sources."@babel/plugin-transform-sticky-regex-7.18.6" 10929 10929 sources."@babel/plugin-transform-template-literals-7.18.9" 10930 10930 sources."@babel/plugin-transform-typeof-symbol-7.18.9" 10931 - sources."@babel/plugin-transform-typescript-7.19.1" 10931 + sources."@babel/plugin-transform-typescript-7.20.2" 10932 10932 sources."@babel/plugin-transform-unicode-escapes-7.18.10" 10933 10933 sources."@babel/plugin-transform-unicode-regex-7.18.6" 10934 - sources."@babel/preset-env-7.19.1" 10934 + sources."@babel/preset-env-7.20.2" 10935 10935 sources."@babel/preset-modules-0.1.5" 10936 10936 sources."@babel/preset-react-7.18.6" 10937 10937 sources."@babel/preset-typescript-7.18.6" 10938 - sources."@babel/runtime-7.19.0" 10939 - sources."@babel/runtime-corejs3-7.19.1" 10938 + sources."@babel/runtime-7.20.1" 10939 + sources."@babel/runtime-corejs3-7.20.1" 10940 10940 sources."@babel/template-7.18.10" 10941 - sources."@babel/traverse-7.19.1" 10942 - sources."@babel/types-7.19.0" 10941 + sources."@babel/traverse-7.20.1" 10942 + sources."@babel/types-7.20.2" 10943 10943 sources."@bcoe/v8-coverage-0.2.3" 10944 10944 sources."@csstools/normalize.css-12.0.0" 10945 10945 sources."@csstools/postcss-cascade-layers-1.1.1" ··· 10957 10957 sources."@csstools/postcss-trigonometric-functions-1.0.2" 10958 10958 sources."@csstools/postcss-unset-value-1.0.2" 10959 10959 sources."@csstools/selector-specificity-2.0.2" 10960 - sources."@emotion/babel-plugin-11.10.2" 10961 - sources."@emotion/cache-11.10.3" 10960 + sources."@emotion/babel-plugin-11.10.5" 10961 + sources."@emotion/cache-11.10.5" 10962 10962 sources."@emotion/hash-0.9.0" 10963 10963 sources."@emotion/is-prop-valid-1.2.0" 10964 10964 sources."@emotion/memoize-0.8.0" 10965 - sources."@emotion/react-11.10.4" 10966 - sources."@emotion/serialize-1.1.0" 10967 - sources."@emotion/sheet-1.2.0" 10968 - sources."@emotion/styled-11.10.4" 10965 + sources."@emotion/react-11.10.5" 10966 + sources."@emotion/serialize-1.1.1" 10967 + sources."@emotion/sheet-1.2.1" 10968 + sources."@emotion/styled-11.10.5" 10969 10969 sources."@emotion/unitless-0.8.0" 10970 10970 sources."@emotion/use-insertion-effect-with-fallbacks-1.0.0" 10971 10971 sources."@emotion/utils-1.2.0" 10972 10972 sources."@emotion/weak-memoize-0.3.0" 10973 - (sources."@eslint/eslintrc-1.3.2" // { 10973 + (sources."@eslint/eslintrc-1.3.3" // { 10974 10974 dependencies = [ 10975 10975 sources."argparse-2.0.1" 10976 - sources."globals-13.17.0" 10976 + sources."globals-13.18.0" 10977 10977 sources."js-yaml-4.1.0" 10978 10978 sources."type-fest-0.20.2" 10979 10979 ]; 10980 10980 }) 10981 - sources."@humanwhocodes/config-array-0.10.5" 10982 - sources."@humanwhocodes/gitignore-to-minimatch-1.0.2" 10981 + sources."@humanwhocodes/config-array-0.11.7" 10983 10982 sources."@humanwhocodes/module-importer-1.0.1" 10984 10983 sources."@humanwhocodes/object-schema-1.2.1" 10985 10984 (sources."@istanbuljs/load-nyc-config-1.1.0" // { ··· 11065 11064 ]; 11066 11065 }) 11067 11066 sources."@jridgewell/sourcemap-codec-1.4.14" 11068 - sources."@jridgewell/trace-mapping-0.3.15" 11067 + sources."@jridgewell/trace-mapping-0.3.17" 11069 11068 sources."@leichtgewicht/ip-codec-2.0.4" 11070 - sources."@mui/base-5.0.0-alpha.99" 11071 - sources."@mui/core-downloads-tracker-5.10.7" 11072 - sources."@mui/icons-material-5.10.6" 11073 - sources."@mui/material-5.10.7" 11074 - sources."@mui/private-theming-5.10.6" 11075 - sources."@mui/styled-engine-5.10.7" 11076 - sources."@mui/system-5.10.7" 11077 - sources."@mui/types-7.2.0" 11078 - sources."@mui/utils-5.10.6" 11069 + sources."@mui/base-5.0.0-alpha.106" 11070 + sources."@mui/core-downloads-tracker-5.10.14" 11071 + sources."@mui/icons-material-5.10.14" 11072 + sources."@mui/material-5.10.14" 11073 + sources."@mui/private-theming-5.10.14" 11074 + sources."@mui/styled-engine-5.10.14" 11075 + sources."@mui/system-5.10.14" 11076 + sources."@mui/types-7.2.1" 11077 + sources."@mui/utils-5.10.14" 11079 11078 (sources."@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" // { 11080 11079 dependencies = [ 11081 11080 sources."eslint-scope-5.1.1" ··· 11085 11084 sources."@nodelib/fs.scandir-2.1.5" 11086 11085 sources."@nodelib/fs.stat-2.0.5" 11087 11086 sources."@nodelib/fs.walk-1.2.8" 11088 - (sources."@pmmmwh/react-refresh-webpack-plugin-0.5.7" // { 11087 + (sources."@pmmmwh/react-refresh-webpack-plugin-0.5.9" // { 11089 11088 dependencies = [ 11090 11089 sources."source-map-0.7.4" 11091 11090 ]; 11092 11091 }) 11093 11092 sources."@popperjs/core-2.11.6" 11094 - sources."@remix-run/router-1.0.1" 11093 + sources."@remix-run/router-1.0.3" 11095 11094 sources."@rollup/plugin-babel-5.3.1" 11096 11095 sources."@rollup/plugin-node-resolve-11.2.1" 11097 11096 sources."@rollup/plugin-replace-2.4.2" ··· 11101 11100 ]; 11102 11101 }) 11103 11102 sources."@rushstack/eslint-patch-1.2.0" 11104 - sources."@sinclair/typebox-0.24.43" 11105 - sources."@sinonjs/commons-1.8.3" 11103 + sources."@sinclair/typebox-0.24.51" 11104 + sources."@sinonjs/commons-1.8.5" 11106 11105 sources."@sinonjs/fake-timers-8.1.0" 11107 11106 sources."@surma/rollup-plugin-off-main-thread-2.2.3" 11108 11107 sources."@svgr/babel-plugin-add-jsx-attribute-5.4.0" ··· 11121 11120 sources."@svgr/webpack-5.5.0" 11122 11121 sources."@tootallnate/once-1.1.2" 11123 11122 sources."@trysound/sax-0.2.0" 11124 - sources."@types/babel__core-7.1.19" 11123 + sources."@types/babel__core-7.1.20" 11125 11124 sources."@types/babel__generator-7.6.4" 11126 11125 sources."@types/babel__template-7.4.1" 11127 11126 sources."@types/babel__traverse-7.18.2" ··· 11129 11128 sources."@types/bonjour-3.5.10" 11130 11129 sources."@types/connect-3.4.35" 11131 11130 sources."@types/connect-history-api-fallback-1.3.5" 11132 - sources."@types/eslint-8.4.6" 11131 + sources."@types/eslint-8.4.10" 11133 11132 sources."@types/eslint-scope-3.7.4" 11134 11133 sources."@types/estree-1.0.0" 11135 11134 sources."@types/express-4.17.14" ··· 11143 11142 sources."@types/json-schema-7.0.11" 11144 11143 sources."@types/json5-0.0.29" 11145 11144 sources."@types/mime-3.0.1" 11146 - sources."@types/node-18.7.23" 11145 + sources."@types/node-18.11.9" 11147 11146 sources."@types/parse-json-4.0.0" 11148 11147 sources."@types/prettier-2.7.1" 11149 11148 sources."@types/prop-types-15.7.5" 11150 11149 sources."@types/q-1.5.5" 11151 11150 sources."@types/qs-6.9.7" 11152 11151 sources."@types/range-parser-1.2.4" 11153 - sources."@types/react-18.0.21" 11152 + sources."@types/react-18.0.25" 11154 11153 sources."@types/react-is-17.0.3" 11155 11154 sources."@types/react-transition-group-4.4.5" 11156 11155 sources."@types/resolve-1.17.1" 11157 11156 sources."@types/retry-0.12.0" 11158 11157 sources."@types/scheduler-0.16.2" 11158 + sources."@types/semver-7.3.13" 11159 11159 sources."@types/serve-index-1.9.1" 11160 11160 sources."@types/serve-static-1.15.0" 11161 11161 sources."@types/sockjs-0.3.33" ··· 11164 11164 sources."@types/ws-8.5.3" 11165 11165 sources."@types/yargs-16.0.4" 11166 11166 sources."@types/yargs-parser-21.0.0" 11167 - (sources."@typescript-eslint/eslint-plugin-5.38.1" // { 11167 + (sources."@typescript-eslint/eslint-plugin-5.43.0" // { 11168 11168 dependencies = [ 11169 - sources."semver-7.3.7" 11169 + sources."semver-7.3.8" 11170 11170 ]; 11171 11171 }) 11172 - sources."@typescript-eslint/experimental-utils-5.38.1" 11173 - sources."@typescript-eslint/parser-5.38.1" 11174 - sources."@typescript-eslint/scope-manager-5.38.1" 11175 - sources."@typescript-eslint/type-utils-5.38.1" 11176 - sources."@typescript-eslint/types-5.38.1" 11177 - (sources."@typescript-eslint/typescript-estree-5.38.1" // { 11172 + sources."@typescript-eslint/experimental-utils-5.43.0" 11173 + sources."@typescript-eslint/parser-5.43.0" 11174 + sources."@typescript-eslint/scope-manager-5.43.0" 11175 + sources."@typescript-eslint/type-utils-5.43.0" 11176 + sources."@typescript-eslint/types-5.43.0" 11177 + (sources."@typescript-eslint/typescript-estree-5.43.0" // { 11178 11178 dependencies = [ 11179 - sources."semver-7.3.7" 11179 + sources."semver-7.3.8" 11180 11180 ]; 11181 11181 }) 11182 - (sources."@typescript-eslint/utils-5.38.1" // { 11182 + (sources."@typescript-eslint/utils-5.43.0" // { 11183 11183 dependencies = [ 11184 11184 sources."eslint-scope-5.1.1" 11185 11185 sources."estraverse-4.3.0" 11186 + sources."semver-7.3.8" 11186 11187 ]; 11187 11188 }) 11188 - sources."@typescript-eslint/visitor-keys-5.38.1" 11189 + sources."@typescript-eslint/visitor-keys-5.43.0" 11189 11190 sources."@webassemblyjs/ast-1.11.1" 11190 11191 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 11191 11192 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 11205 11206 sources."@xtuc/long-4.2.2" 11206 11207 sources."abab-2.0.6" 11207 11208 sources."accepts-1.3.8" 11208 - sources."acorn-8.8.0" 11209 + sources."acorn-8.8.1" 11209 11210 (sources."acorn-globals-6.0.0" // { 11210 11211 dependencies = [ 11211 11212 sources."acorn-7.4.1" ··· 11225 11226 sources."ajv-6.12.6" 11226 11227 (sources."ajv-formats-2.1.1" // { 11227 11228 dependencies = [ 11228 - sources."ajv-8.11.0" 11229 + sources."ajv-8.11.2" 11229 11230 sources."json-schema-traverse-1.0.0" 11230 11231 ]; 11231 11232 }) ··· 11239 11240 sources."argparse-1.0.10" 11240 11241 sources."aria-query-4.2.2" 11241 11242 sources."array-flatten-2.1.2" 11242 - sources."array-includes-3.1.5" 11243 + sources."array-includes-3.1.6" 11243 11244 sources."array-union-2.1.0" 11244 - sources."array.prototype.flat-1.3.0" 11245 - sources."array.prototype.flatmap-1.3.0" 11246 - sources."array.prototype.reduce-1.0.4" 11245 + sources."array.prototype.flat-1.3.1" 11246 + sources."array.prototype.flatmap-1.3.1" 11247 + sources."array.prototype.reduce-1.0.5" 11247 11248 sources."asap-2.0.6" 11248 11249 sources."ast-types-flow-0.0.7" 11249 11250 sources."async-3.2.4" 11250 11251 sources."asynckit-0.4.0" 11251 11252 sources."at-least-node-1.0.0" 11252 - sources."autoprefixer-10.4.12" 11253 - sources."axe-core-4.4.3" 11253 + sources."autoprefixer-10.4.13" 11254 + sources."axe-core-4.5.2" 11254 11255 sources."axobject-query-2.2.0" 11255 11256 (sources."babel-jest-27.5.1" // { 11256 11257 dependencies = [ ··· 11262 11263 sources."supports-color-7.2.0" 11263 11264 ]; 11264 11265 }) 11265 - (sources."babel-loader-8.2.5" // { 11266 + (sources."babel-loader-8.3.0" // { 11266 11267 dependencies = [ 11267 11268 sources."schema-utils-2.7.1" 11268 11269 ]; 11269 11270 }) 11270 - sources."babel-plugin-dynamic-import-node-2.3.3" 11271 11271 sources."babel-plugin-istanbul-6.1.1" 11272 11272 sources."babel-plugin-jest-hoist-27.5.1" 11273 11273 sources."babel-plugin-macros-3.1.0" ··· 11285 11285 sources."big.js-5.2.2" 11286 11286 sources."binary-extensions-2.2.0" 11287 11287 sources."bluebird-3.7.2" 11288 - (sources."body-parser-1.20.0" // { 11288 + (sources."body-parser-1.20.1" // { 11289 11289 dependencies = [ 11290 11290 sources."bytes-3.1.2" 11291 11291 sources."debug-2.6.9" ··· 11309 11309 sources."camelcase-6.3.0" 11310 11310 sources."camelcase-css-2.0.1" 11311 11311 sources."caniuse-api-3.0.0" 11312 - sources."caniuse-lite-1.0.30001412" 11312 + sources."caniuse-lite-1.0.30001431" 11313 11313 sources."case-sensitive-paths-webpack-plugin-2.4.0" 11314 11314 (sources."chalk-2.4.2" // { 11315 11315 dependencies = [ ··· 11324 11324 ]; 11325 11325 }) 11326 11326 sources."chrome-trace-event-1.0.3" 11327 - sources."ci-info-3.4.0" 11327 + sources."ci-info-3.6.1" 11328 11328 sources."cjs-module-lexer-1.2.2" 11329 11329 (sources."clean-css-5.3.1" // { 11330 11330 dependencies = [ ··· 11350 11350 dependencies = [ 11351 11351 sources."debug-2.6.9" 11352 11352 sources."ms-2.0.0" 11353 + sources."safe-buffer-5.1.2" 11353 11354 ]; 11354 11355 }) 11355 11356 sources."concat-map-0.0.1" 11356 11357 sources."confusing-browser-globals-1.0.11" 11357 11358 sources."connect-history-api-fallback-2.0.0" 11358 - (sources."content-disposition-0.5.4" // { 11359 - dependencies = [ 11360 - sources."safe-buffer-5.2.1" 11361 - ]; 11362 - }) 11359 + sources."content-disposition-0.5.4" 11363 11360 sources."content-type-1.0.4" 11364 - sources."convert-source-map-1.8.0" 11361 + sources."convert-source-map-1.9.0" 11365 11362 sources."cookie-0.5.0" 11366 11363 sources."cookie-signature-1.0.6" 11367 - sources."core-js-3.25.3" 11368 - sources."core-js-compat-3.25.3" 11369 - sources."core-js-pure-3.25.3" 11364 + sources."core-js-3.26.1" 11365 + sources."core-js-compat-3.26.1" 11366 + sources."core-js-pure-3.26.1" 11370 11367 sources."core-util-is-1.0.3" 11371 - sources."cosmiconfig-7.0.1" 11368 + sources."cosmiconfig-7.1.0" 11372 11369 sources."cross-fetch-3.1.5" 11373 11370 sources."cross-spawn-7.0.3" 11374 11371 sources."crypto-random-string-2.0.0" 11375 11372 sources."css-blank-pseudo-3.0.3" 11376 11373 sources."css-declaration-sorter-6.3.1" 11377 11374 sources."css-has-pseudo-3.0.4" 11378 - (sources."css-loader-6.7.1" // { 11375 + (sources."css-loader-6.7.2" // { 11379 11376 dependencies = [ 11380 - sources."semver-7.3.7" 11377 + sources."semver-7.3.8" 11381 11378 ]; 11382 11379 }) 11383 11380 (sources."css-minimizer-webpack-plugin-3.4.1" // { 11384 11381 dependencies = [ 11385 - sources."ajv-8.11.0" 11382 + sources."ajv-8.11.2" 11386 11383 sources."ajv-keywords-5.1.0" 11387 11384 sources."json-schema-traverse-1.0.0" 11388 11385 sources."schema-utils-4.0.0" ··· 11398 11395 ]; 11399 11396 }) 11400 11397 sources."css-what-6.1.0" 11401 - sources."cssdb-7.0.1" 11398 + sources."cssdb-7.1.0" 11402 11399 sources."cssesc-3.0.0" 11403 - sources."cssnano-5.1.13" 11404 - sources."cssnano-preset-default-5.2.12" 11400 + sources."cssnano-5.1.14" 11401 + sources."cssnano-preset-default-5.2.13" 11405 11402 sources."cssnano-utils-3.1.0" 11406 11403 (sources."csso-4.2.0" // { 11407 11404 dependencies = [ ··· 11425 11422 ]; 11426 11423 }) 11427 11424 sources."debug-4.3.4" 11428 - sources."decimal.js-10.4.1" 11425 + sources."decimal.js-10.4.2" 11429 11426 sources."dedent-0.7.0" 11430 11427 sources."deep-is-0.1.4" 11431 11428 sources."deepmerge-4.2.2" 11432 11429 sources."default-gateway-6.0.3" 11433 11430 sources."define-lazy-prop-2.0.0" 11434 11431 sources."define-properties-1.1.4" 11435 - sources."defined-1.0.0" 11432 + sources."defined-1.0.1" 11436 11433 sources."delayed-stream-1.0.0" 11437 11434 sources."depd-2.0.0" 11438 11435 sources."destroy-1.2.0" ··· 11471 11468 sources."duplexer-0.1.2" 11472 11469 sources."ee-first-1.1.1" 11473 11470 sources."ejs-3.1.8" 11474 - sources."electron-to-chromium-1.4.264" 11471 + sources."electron-to-chromium-1.4.284" 11475 11472 sources."emittery-0.8.1" 11476 11473 sources."emoji-regex-9.2.2" 11477 11474 sources."emojis-list-3.0.0" ··· 11480 11477 sources."entities-2.2.0" 11481 11478 sources."error-ex-1.3.2" 11482 11479 sources."error-stack-parser-2.1.4" 11483 - sources."es-abstract-1.20.3" 11480 + sources."es-abstract-1.20.4" 11484 11481 sources."es-array-method-boxes-properly-1.0.0" 11485 11482 sources."es-module-lexer-0.9.3" 11486 11483 sources."es-shim-unscopables-1.0.0" ··· 11497 11494 sources."type-check-0.3.2" 11498 11495 ]; 11499 11496 }) 11500 - (sources."eslint-8.24.0" // { 11497 + (sources."eslint-8.27.0" // { 11501 11498 dependencies = [ 11502 11499 sources."ansi-styles-4.3.0" 11503 11500 sources."argparse-2.0.1" 11504 11501 sources."chalk-4.1.2" 11505 11502 sources."color-convert-2.0.1" 11506 11503 sources."color-name-1.1.4" 11507 - sources."globals-13.17.0" 11504 + sources."globals-13.18.0" 11508 11505 sources."has-flag-4.0.0" 11509 11506 sources."js-yaml-4.1.0" 11510 11507 sources."supports-color-7.2.0" ··· 11532 11529 }) 11533 11530 sources."eslint-plugin-jest-25.7.0" 11534 11531 sources."eslint-plugin-jsx-a11y-6.6.1" 11535 - (sources."eslint-plugin-react-7.31.8" // { 11532 + (sources."eslint-plugin-react-7.31.10" // { 11536 11533 dependencies = [ 11537 11534 sources."doctrine-2.1.0" 11538 11535 sources."resolve-2.0.0-next.4" 11539 11536 ]; 11540 11537 }) 11541 11538 sources."eslint-plugin-react-hooks-4.6.0" 11542 - sources."eslint-plugin-testing-library-5.7.0" 11539 + sources."eslint-plugin-testing-library-5.9.1" 11543 11540 sources."eslint-scope-7.1.1" 11544 11541 (sources."eslint-utils-3.0.0" // { 11545 11542 dependencies = [ ··· 11549 11546 sources."eslint-visitor-keys-3.3.0" 11550 11547 (sources."eslint-webpack-plugin-3.2.0" // { 11551 11548 dependencies = [ 11552 - sources."ajv-8.11.0" 11549 + sources."ajv-8.11.2" 11553 11550 sources."ajv-keywords-5.1.0" 11554 11551 sources."has-flag-4.0.0" 11555 11552 sources."jest-worker-28.1.3" ··· 11558 11555 sources."supports-color-8.1.1" 11559 11556 ]; 11560 11557 }) 11561 - sources."espree-9.4.0" 11558 + sources."espree-9.4.1" 11562 11559 sources."esprima-4.0.1" 11563 11560 sources."esquery-1.4.0" 11564 11561 sources."esrecurse-4.3.0" ··· 11571 11568 sources."execa-5.1.1" 11572 11569 sources."exit-0.1.2" 11573 11570 sources."expect-27.5.1" 11574 - (sources."express-4.18.1" // { 11571 + (sources."express-4.18.2" // { 11575 11572 dependencies = [ 11576 11573 sources."array-flatten-1.1.1" 11577 11574 sources."debug-2.6.9" 11578 11575 sources."ms-2.0.0" 11579 - sources."safe-buffer-5.2.1" 11580 11576 ]; 11581 11577 }) 11582 11578 sources."fast-deep-equal-3.1.3" ··· 11622 11618 sources."fs-extra-9.1.0" 11623 11619 sources."has-flag-4.0.0" 11624 11620 sources."schema-utils-2.7.0" 11625 - sources."semver-7.3.7" 11621 + sources."semver-7.3.8" 11626 11622 sources."supports-color-7.2.0" 11627 11623 sources."tapable-1.1.3" 11628 11624 ]; ··· 11677 11673 (sources."hpack.js-2.1.6" // { 11678 11674 dependencies = [ 11679 11675 sources."readable-stream-2.3.7" 11676 + sources."safe-buffer-5.1.2" 11680 11677 sources."string_decoder-1.1.1" 11681 11678 ]; 11682 11679 }) ··· 11695 11692 sources."http-proxy-middleware-2.0.6" 11696 11693 sources."https-proxy-agent-5.0.1" 11697 11694 sources."human-signals-2.1.0" 11698 - sources."i18next-21.9.2" 11699 - sources."i18next-browser-languagedetector-6.1.5" 11700 - sources."i18next-http-backend-1.4.4" 11695 + sources."i18next-21.10.0" 11696 + sources."i18next-browser-languagedetector-6.1.8" 11697 + sources."i18next-http-backend-1.4.5" 11701 11698 sources."iconv-lite-0.6.3" 11702 11699 sources."icss-utils-5.1.0" 11703 - sources."idb-7.1.0" 11700 + sources."idb-7.1.1" 11704 11701 sources."identity-obj-proxy-3.0.0" 11705 11702 sources."ignore-5.2.0" 11706 - sources."immer-9.0.15" 11703 + sources."immer-9.0.16" 11707 11704 sources."import-fresh-3.3.0" 11708 11705 sources."import-local-3.1.0" 11709 11706 sources."imurmurhash-0.1.4" ··· 11717 11714 sources."is-binary-path-2.1.0" 11718 11715 sources."is-boolean-object-1.1.2" 11719 11716 sources."is-callable-1.2.7" 11720 - sources."is-core-module-2.10.0" 11717 + sources."is-core-module-2.11.0" 11721 11718 sources."is-date-object-1.0.5" 11722 11719 sources."is-docker-2.2.1" 11723 11720 sources."is-extglob-2.1.1" ··· 11729 11726 sources."is-number-7.0.0" 11730 11727 sources."is-number-object-1.0.7" 11731 11728 sources."is-obj-1.0.1" 11729 + sources."is-path-inside-3.0.3" 11732 11730 sources."is-plain-obj-3.0.0" 11733 11731 sources."is-potential-custom-element-name-1.0.1" 11734 11732 sources."is-regex-1.1.4" ··· 11744 11742 sources."isarray-1.0.0" 11745 11743 sources."isexe-2.0.0" 11746 11744 sources."istanbul-lib-coverage-3.2.0" 11747 - sources."istanbul-lib-instrument-5.2.0" 11745 + sources."istanbul-lib-instrument-5.2.1" 11748 11746 (sources."istanbul-lib-report-3.0.0" // { 11749 11747 dependencies = [ 11750 11748 sources."has-flag-4.0.0" ··· 11856 11854 ]; 11857 11855 }) 11858 11856 sources."jest-mock-27.5.1" 11859 - sources."jest-pnp-resolver-1.2.2" 11857 + sources."jest-pnp-resolver-1.2.3" 11860 11858 sources."jest-regex-util-27.5.1" 11861 11859 (sources."jest-resolve-27.5.1" // { 11862 11860 dependencies = [ ··· 11897 11895 sources."color-convert-2.0.1" 11898 11896 sources."color-name-1.1.4" 11899 11897 sources."has-flag-4.0.0" 11900 - sources."semver-7.3.7" 11898 + sources."semver-7.3.8" 11901 11899 sources."supports-color-7.2.0" 11902 11900 ]; 11903 11901 }) ··· 11985 11983 sources."supports-color-8.1.1" 11986 11984 ]; 11987 11985 }) 11988 - sources."js-base64-3.7.2" 11989 - sources."js-sdsl-4.1.4" 11986 + sources."js-base64-3.7.3" 11987 + sources."js-sdsl-4.1.5" 11990 11988 sources."js-tokens-4.0.0" 11991 11989 sources."js-yaml-3.14.1" 11992 11990 (sources."jsdom-16.7.0" // { ··· 12014 12012 sources."lilconfig-2.0.6" 12015 12013 sources."lines-and-columns-1.2.4" 12016 12014 sources."loader-runner-4.3.0" 12017 - sources."loader-utils-2.0.2" 12015 + sources."loader-utils-2.0.4" 12018 12016 sources."locate-path-6.0.0" 12019 12017 sources."lodash-4.17.21" 12020 12018 sources."lodash.debounce-4.0.8" ··· 12030 12028 sources."makeerror-1.0.12" 12031 12029 sources."mdn-data-2.0.4" 12032 12030 sources."media-typer-0.3.0" 12033 - sources."memfs-3.4.7" 12031 + sources."memfs-3.4.11" 12034 12032 sources."merge-descriptors-1.0.1" 12035 12033 sources."merge-stream-2.0.0" 12036 12034 sources."merge2-1.4.1" ··· 12040 12038 sources."mime-db-1.52.0" 12041 12039 sources."mime-types-2.1.35" 12042 12040 sources."mimic-fn-2.1.0" 12043 - (sources."mini-css-extract-plugin-2.6.1" // { 12041 + (sources."mini-css-extract-plugin-2.7.0" // { 12044 12042 dependencies = [ 12045 - sources."ajv-8.11.0" 12043 + sources."ajv-8.11.2" 12046 12044 sources."ajv-keywords-5.1.0" 12047 12045 sources."json-schema-traverse-1.0.0" 12048 12046 sources."schema-utils-4.0.0" ··· 12050 12048 }) 12051 12049 sources."minimalistic-assert-1.0.1" 12052 12050 sources."minimatch-3.1.2" 12053 - sources."minimist-1.2.6" 12051 + sources."minimist-1.2.7" 12054 12052 sources."mkdirp-0.5.6" 12055 12053 sources."ms-2.1.2" 12056 12054 sources."multicast-dns-7.2.5" 12057 12055 sources."nanoid-3.3.4" 12058 12056 sources."natural-compare-1.4.0" 12057 + sources."natural-compare-lite-1.4.0" 12059 12058 sources."negotiator-0.6.3" 12060 12059 sources."neo-async-2.6.2" 12061 12060 sources."no-case-3.0.4" ··· 12074 12073 sources."object-inspect-1.12.2" 12075 12074 sources."object-keys-1.1.1" 12076 12075 sources."object.assign-4.1.4" 12077 - sources."object.entries-1.1.5" 12078 - sources."object.fromentries-2.0.5" 12079 - sources."object.getownpropertydescriptors-2.1.4" 12080 - sources."object.hasown-1.1.1" 12081 - sources."object.values-1.1.5" 12076 + sources."object.entries-1.1.6" 12077 + sources."object.fromentries-2.0.6" 12078 + sources."object.getownpropertydescriptors-2.1.5" 12079 + sources."object.hasown-1.1.2" 12080 + sources."object.values-1.1.6" 12082 12081 sources."obuf-1.1.2" 12083 12082 sources."on-finished-2.4.1" 12084 12083 sources."on-headers-1.0.2" ··· 12124 12123 sources."path-exists-3.0.0" 12125 12124 ]; 12126 12125 }) 12127 - sources."postcss-8.4.16" 12126 + sources."postcss-8.4.19" 12128 12127 sources."postcss-attribute-case-insensitive-5.0.2" 12129 12128 sources."postcss-browser-comments-4.0.0" 12130 12129 sources."postcss-calc-8.2.4" ··· 12133 12132 sources."postcss-color-hex-alpha-8.0.4" 12134 12133 sources."postcss-color-rebeccapurple-7.1.1" 12135 12134 sources."postcss-colormin-5.3.0" 12136 - sources."postcss-convert-values-5.1.2" 12135 + sources."postcss-convert-values-5.1.3" 12137 12136 sources."postcss-custom-media-8.0.2" 12138 - sources."postcss-custom-properties-12.1.9" 12137 + sources."postcss-custom-properties-12.1.10" 12139 12138 sources."postcss-custom-selectors-6.0.3" 12140 12139 sources."postcss-dir-pseudo-class-6.0.5" 12141 12140 sources."postcss-discard-comments-5.1.2" ··· 12157 12156 sources."postcss-load-config-3.1.4" 12158 12157 (sources."postcss-loader-6.2.1" // { 12159 12158 dependencies = [ 12160 - sources."semver-7.3.7" 12159 + sources."semver-7.3.8" 12161 12160 ]; 12162 12161 }) 12163 12162 sources."postcss-logical-5.0.4" 12164 12163 sources."postcss-media-minmax-5.0.0" 12165 - sources."postcss-merge-longhand-5.1.6" 12166 - sources."postcss-merge-rules-5.1.2" 12164 + sources."postcss-merge-longhand-5.1.7" 12165 + sources."postcss-merge-rules-5.1.3" 12167 12166 sources."postcss-minify-font-values-5.1.0" 12168 12167 sources."postcss-minify-gradients-5.1.1" 12169 - sources."postcss-minify-params-5.1.3" 12168 + sources."postcss-minify-params-5.1.4" 12170 12169 sources."postcss-minify-selectors-5.2.1" 12171 12170 sources."postcss-modules-extract-imports-3.0.0" 12172 12171 sources."postcss-modules-local-by-default-4.0.0" 12173 12172 sources."postcss-modules-scope-3.0.0" 12174 12173 sources."postcss-modules-values-4.0.0" 12175 - sources."postcss-nested-5.0.6" 12174 + sources."postcss-nested-6.0.0" 12176 12175 sources."postcss-nesting-10.2.0" 12177 12176 sources."postcss-normalize-10.0.1" 12178 12177 sources."postcss-normalize-charset-5.1.0" ··· 12181 12180 sources."postcss-normalize-repeat-style-5.1.1" 12182 12181 sources."postcss-normalize-string-5.1.0" 12183 12182 sources."postcss-normalize-timing-functions-5.1.0" 12184 - sources."postcss-normalize-unicode-5.1.0" 12183 + sources."postcss-normalize-unicode-5.1.1" 12185 12184 sources."postcss-normalize-url-5.1.0" 12186 12185 sources."postcss-normalize-whitespace-5.1.1" 12187 12186 sources."postcss-opacity-percentage-1.1.2" ··· 12189 12188 sources."postcss-overflow-shorthand-3.0.4" 12190 12189 sources."postcss-page-break-3.0.4" 12191 12190 sources."postcss-place-7.0.5" 12192 - sources."postcss-preset-env-7.8.2" 12191 + sources."postcss-preset-env-7.8.3" 12193 12192 sources."postcss-pseudo-class-any-link-7.1.6" 12194 - sources."postcss-reduce-initial-5.1.0" 12193 + sources."postcss-reduce-initial-5.1.1" 12195 12194 sources."postcss-reduce-transforms-5.1.0" 12196 12195 sources."postcss-replace-overflow-wrap-4.0.0" 12197 12196 sources."postcss-selector-not-6.0.1" ··· 12217 12216 ]; 12218 12217 }) 12219 12218 sources."process-nextick-args-2.0.1" 12220 - sources."promise-8.2.0" 12219 + sources."promise-8.3.0" 12221 12220 sources."prompts-2.4.2" 12222 12221 (sources."prop-types-15.8.1" // { 12223 12222 dependencies = [ ··· 12232 12231 sources."psl-1.9.0" 12233 12232 sources."punycode-2.1.1" 12234 12233 sources."q-1.5.1" 12235 - sources."qs-6.10.3" 12234 + sources."qs-6.11.0" 12236 12235 sources."querystringify-2.2.0" 12237 12236 sources."queue-microtask-1.2.3" 12238 12237 sources."quick-lru-5.1.1" ··· 12254 12253 sources."color-convert-2.0.1" 12255 12254 sources."color-name-1.1.4" 12256 12255 sources."has-flag-4.0.0" 12257 - sources."loader-utils-3.2.0" 12256 + sources."loader-utils-3.2.1" 12258 12257 sources."supports-color-7.2.0" 12259 12258 ]; 12260 12259 }) ··· 12264 12263 sources."react-infinite-scroll-component-6.1.0" 12265 12264 sources."react-is-18.2.0" 12266 12265 sources."react-refresh-0.11.0" 12267 - sources."react-router-6.4.1" 12268 - sources."react-router-dom-6.4.1" 12266 + sources."react-router-6.4.3" 12267 + sources."react-router-dom-6.4.3" 12269 12268 (sources."react-scripts-5.0.1" // { 12270 12269 dependencies = [ 12271 - sources."semver-7.3.7" 12270 + sources."semver-7.3.8" 12272 12271 ]; 12273 12272 }) 12274 12273 sources."react-transition-group-4.4.5" 12275 12274 sources."read-cache-1.0.0" 12276 12275 sources."readable-stream-3.6.0" 12277 12276 sources."readdirp-3.6.0" 12278 - (sources."recursive-readdir-2.2.2" // { 12279 - dependencies = [ 12280 - sources."minimatch-3.0.4" 12281 - ]; 12282 - }) 12277 + sources."recursive-readdir-2.2.3" 12283 12278 sources."regenerate-1.4.2" 12284 12279 sources."regenerate-unicode-properties-10.1.0" 12285 - sources."regenerator-runtime-0.13.9" 12286 - sources."regenerator-transform-0.15.0" 12280 + sources."regenerator-runtime-0.13.11" 12281 + sources."regenerator-transform-0.15.1" 12287 12282 sources."regex-parser-2.2.11" 12288 12283 sources."regexp.prototype.flags-1.4.3" 12289 12284 sources."regexpp-3.2.0" 12290 - sources."regexpu-core-5.2.1" 12285 + sources."regexpu-core-5.2.2" 12291 12286 sources."regjsgen-0.7.1" 12292 12287 (sources."regjsparser-0.9.1" // { 12293 12288 dependencies = [ ··· 12327 12322 ]; 12328 12323 }) 12329 12324 sources."run-parallel-1.2.0" 12330 - sources."safe-buffer-5.1.2" 12325 + sources."safe-buffer-5.2.1" 12331 12326 sources."safe-regex-test-1.0.0" 12332 12327 sources."safer-buffer-2.1.2" 12333 12328 sources."sanitize.css-13.0.0" ··· 12365 12360 sources."setprototypeof-1.2.0" 12366 12361 sources."shebang-command-2.0.0" 12367 12362 sources."shebang-regex-3.0.0" 12368 - sources."shell-quote-1.7.3" 12363 + sources."shell-quote-1.7.4" 12369 12364 sources."side-channel-1.0.4" 12370 12365 sources."signal-exit-3.0.7" 12371 12366 sources."sisteransi-1.0.5" ··· 12374 12369 sources."source-list-map-2.0.1" 12375 12370 sources."source-map-0.5.7" 12376 12371 sources."source-map-js-1.0.2" 12377 - sources."source-map-loader-3.0.1" 12372 + sources."source-map-loader-3.0.2" 12378 12373 (sources."source-map-support-0.5.21" // { 12379 12374 dependencies = [ 12380 12375 sources."source-map-0.6.1" ··· 12386 12381 sources."sprintf-js-1.0.3" 12387 12382 sources."stable-0.1.8" 12388 12383 sources."stack-generator-2.0.10" 12389 - (sources."stack-utils-2.0.5" // { 12384 + (sources."stack-utils-2.0.6" // { 12390 12385 dependencies = [ 12391 12386 sources."escape-string-regexp-2.0.0" 12392 12387 ]; ··· 12406 12401 sources."emoji-regex-8.0.0" 12407 12402 ]; 12408 12403 }) 12409 - sources."string.prototype.matchall-4.0.7" 12410 - sources."string.prototype.trimend-1.0.5" 12411 - sources."string.prototype.trimstart-1.0.5" 12412 - (sources."string_decoder-1.3.0" // { 12413 - dependencies = [ 12414 - sources."safe-buffer-5.2.1" 12415 - ]; 12416 - }) 12404 + sources."string.prototype.matchall-4.0.8" 12405 + sources."string.prototype.trimend-1.0.6" 12406 + sources."string.prototype.trimstart-1.0.6" 12407 + sources."string_decoder-1.3.0" 12417 12408 sources."stringify-object-3.3.0" 12418 12409 sources."strip-ansi-6.0.1" 12419 12410 sources."strip-bom-4.0.0" ··· 12421 12412 sources."strip-final-newline-2.0.0" 12422 12413 sources."strip-json-comments-3.1.1" 12423 12414 sources."style-loader-3.3.1" 12424 - sources."stylehacks-5.1.0" 12425 - sources."stylis-4.0.13" 12415 + sources."stylehacks-5.1.1" 12416 + sources."stylis-4.1.3" 12426 12417 sources."supports-color-5.5.0" 12427 12418 (sources."supports-hyperlinks-2.3.0" // { 12428 12419 dependencies = [ ··· 12446 12437 ]; 12447 12438 }) 12448 12439 sources."symbol-tree-3.2.4" 12449 - (sources."tailwindcss-3.1.8" // { 12440 + (sources."tailwindcss-3.2.4" // { 12450 12441 dependencies = [ 12451 12442 sources."color-name-1.1.4" 12452 12443 ]; ··· 12459 12450 ]; 12460 12451 }) 12461 12452 sources."terminal-link-2.1.1" 12462 - (sources."terser-5.15.0" // { 12453 + (sources."terser-5.15.1" // { 12463 12454 dependencies = [ 12464 12455 sources."commander-2.20.3" 12465 12456 ]; ··· 12487 12478 sources."strip-bom-3.0.0" 12488 12479 ]; 12489 12480 }) 12490 - sources."tslib-2.4.0" 12481 + sources."tslib-2.4.1" 12491 12482 (sources."tsutils-3.21.0" // { 12492 12483 dependencies = [ 12493 12484 sources."tslib-1.14.1" ··· 12498 12489 sources."type-fest-0.21.3" 12499 12490 sources."type-is-1.6.18" 12500 12491 sources."typedarray-to-buffer-3.1.5" 12501 - sources."typescript-4.8.3" 12492 + sources."typescript-4.9.3" 12502 12493 sources."unbox-primitive-1.0.2" 12503 12494 sources."unicode-canonical-property-names-ecmascript-2.0.0" 12504 12495 sources."unicode-match-property-ecmascript-2.0.0" 12505 - sources."unicode-match-property-value-ecmascript-2.0.0" 12496 + sources."unicode-match-property-value-ecmascript-2.1.0" 12506 12497 sources."unicode-property-aliases-ecmascript-2.1.0" 12507 12498 sources."unique-string-2.0.0" 12508 12499 sources."universalify-2.0.0" 12509 12500 sources."unpipe-1.0.0" 12510 12501 sources."unquote-1.1.1" 12511 12502 sources."upath-1.2.0" 12512 - sources."update-browserslist-db-1.0.9" 12503 + sources."update-browserslist-db-1.0.10" 12513 12504 sources."uri-js-4.4.1" 12514 12505 sources."url-parse-1.5.10" 12515 12506 sources."util-deprecate-1.0.2" ··· 12530 12521 sources."watchpack-2.4.0" 12531 12522 sources."wbuf-1.7.3" 12532 12523 sources."webidl-conversions-6.1.0" 12533 - (sources."webpack-5.74.0" // { 12524 + (sources."webpack-5.75.0" // { 12534 12525 dependencies = [ 12535 12526 sources."@types/estree-0.0.51" 12536 12527 sources."eslint-scope-5.1.1" ··· 12539 12530 }) 12540 12531 (sources."webpack-dev-middleware-5.3.3" // { 12541 12532 dependencies = [ 12542 - sources."ajv-8.11.0" 12533 + sources."ajv-8.11.2" 12543 12534 sources."ajv-keywords-5.1.0" 12544 12535 sources."json-schema-traverse-1.0.0" 12545 12536 sources."schema-utils-4.0.0" ··· 12547 12538 }) 12548 12539 (sources."webpack-dev-server-4.11.1" // { 12549 12540 dependencies = [ 12550 - sources."ajv-8.11.0" 12541 + sources."ajv-8.11.2" 12551 12542 sources."ajv-keywords-5.1.0" 12552 12543 sources."json-schema-traverse-1.0.0" 12553 12544 sources."schema-utils-4.0.0" 12554 - sources."ws-8.9.0" 12545 + sources."ws-8.11.0" 12555 12546 ]; 12556 12547 }) 12557 12548 (sources."webpack-manifest-plugin-4.1.1" // { ··· 12583 12574 (sources."workbox-build-6.5.4" // { 12584 12575 dependencies = [ 12585 12576 sources."@apideck/better-ajv-errors-0.3.6" 12586 - sources."ajv-8.11.0" 12577 + sources."ajv-8.11.2" 12587 12578 sources."fs-extra-9.1.0" 12588 12579 sources."json-schema-traverse-1.0.0" 12589 12580 sources."source-map-0.8.0-beta.0"
+2 -2
pkgs/tools/misc/qflipper/default.nix
··· 23 23 }: 24 24 let 25 25 pname = "qFlipper"; 26 - version = "1.2.1"; 27 - sha256 = "sha256-6pfkZfT/8DNZGIdc8YvHN2TPyhDqHU6e3mqtAZOpHLo="; 26 + version = "1.2.2"; 27 + sha256 = "sha256-zlw1WUKmx93EwgR2FSEovo9570MsDRWtI6IAuAOvBJ0="; 28 28 timestamp = "99999999999"; 29 29 commit = "nix-${version}"; 30 30
+1 -1
pkgs/top-level/all-packages.nix
··· 17988 17988 shards; 17989 17989 17990 17990 shellcheck = callPackage ../development/tools/shellcheck { 17991 - inherit (haskellPackages) ShellCheck; 17991 + inherit (__splicedPackages.haskellPackages) ShellCheck; 17992 17992 }; 17993 17993 17994 17994 shellharden = callPackage ../development/tools/shellharden {};
+2
pkgs/top-level/python-packages.nix
··· 198 198 199 199 aiohttp-jinja2 = callPackage ../development/python-modules/aiohttp-jinja2 { }; 200 200 201 + aiohttp-openmetrics = callPackage ../development/python-modules/aiohttp-openmetrics { }; 202 + 201 203 aiohttp-remotes = callPackage ../development/python-modules/aiohttp-remotes { }; 202 204 203 205 aiohttp-retry = callPackage ../development/python-modules/aiohttp-retry { };