Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub f42b75df 2095c2cd

+2856 -410
+1
maintainers/scripts/luarocks-packages.csv
··· 38 38 lua-resty-http,,,,, 39 39 lua-resty-jwt,,,,, 40 40 lua-resty-openidc,,,,, 41 + lua-resty-openssl,,,,, 41 42 lua-resty-session,,,,, 42 43 lua-term,,,,, 43 44 lua-toml,,,,,
+1 -1
nixos/modules/services/networking/dnsdist.nix
··· 4 4 5 5 let 6 6 cfg = config.services.dnsdist; 7 - configFile = pkgs.writeText "dndist.conf" '' 7 + configFile = pkgs.writeText "dnsdist.conf" '' 8 8 setLocal('${cfg.listenAddress}:${toString cfg.listenPort}') 9 9 ${cfg.extraConfig} 10 10 '';
-1
nixos/tests/packagekit.nix
··· 8 8 environment.systemPackages = with pkgs; [ dbus ]; 9 9 services.packagekit = { 10 10 enable = true; 11 - backend = "test_nop"; 12 11 }; 13 12 }; 14 13
+3 -3
pkgs/applications/audio/hydrogen/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "hydrogen"; 8 - version = "1.0.1"; 8 + version = "1.0.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "hydrogen-music"; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "0snljpvbcgikhz610c325dgvayi0k512p3bglck9vvi90wsqx7l1"; 14 + sha256 = "sha256-t3f+T1QTNbuJnWmD+q0yPgQxXPXvl91lZN17pKUVFlo="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; ··· 27 27 meta = with lib; { 28 28 description = "Advanced drum machine"; 29 29 homepage = "http://www.hydrogen-music.org"; 30 - license = licenses.gpl2; 30 + license = licenses.gpl2Only; 31 31 platforms = platforms.linux; 32 32 maintainers = with maintainers; [ goibhniu orivej ]; 33 33 };
+1 -1
pkgs/applications/misc/veracrypt/default.nix
··· 47 47 meta = { 48 48 description = "Free Open-Source filesystem on-the-fly encryption"; 49 49 homepage = "https://www.veracrypt.fr/"; 50 - license = [ licenses.asl20 /* or */ "TrueCrypt License version 3.0" ]; 50 + license = with licenses; [ asl20 /* and */ unfree /* TrueCrypt License version 3.0 */ ]; 51 51 maintainers = with maintainers; [ dsferruzza ]; 52 52 platforms = platforms.linux; 53 53 };
+45
pkgs/applications/video/losslesscut-bin/appimage.nix
··· 1 + { appimageTools, lib, fetchurl, gtk3, gsettings-desktop-schemas, version }: 2 + 3 + let 4 + pname = "losslesscut"; 5 + nameRepo = "lossless-cut"; 6 + nameCamel = "LosslessCut"; 7 + name = "${pname}-${version}"; 8 + nameSource = "${nameCamel}-linux.AppImage"; 9 + nameExecutable = "losslesscut"; 10 + owner = "mifi"; 11 + src = fetchurl { 12 + url = "https://github.com/${owner}/${nameRepo}/releases/download/v${version}/${nameSource}"; 13 + name = nameSource; 14 + sha256 = "0aqz5ijl5japfzzbcdcd2mmihkb8b2fc2hs9kkm3211yb37c5ygv"; 15 + }; 16 + extracted = appimageTools.extractType2 { 17 + inherit name src; 18 + }; 19 + in appimageTools.wrapType2 { 20 + inherit name src; 21 + 22 + profile = '' 23 + export LC_ALL=C.UTF-8 24 + export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS 25 + ''; 26 + 27 + extraPkgs = ps: appimageTools.defaultFhsEnvArgs.multiPkgs ps; 28 + 29 + extraInstallCommands = '' 30 + mv $out/bin/{${name},${nameExecutable}} 31 + ( 32 + mkdir -p $out/share 33 + cd ${extracted}/usr 34 + find share -mindepth 1 -type d -exec mkdir -p $out/{} \; 35 + find share -mindepth 1 -type f,l -exec ln -s $PWD/{} $out/{} \; 36 + ) 37 + ln -s ${extracted}/${nameExecutable}.png $out/share/icons/${nameExecutable}.png 38 + mkdir $out/share/applications 39 + cp ${extracted}/${nameExecutable}.desktop $out/share/applications 40 + substituteInPlace $out/share/applications/${nameExecutable}.desktop \ 41 + --replace AppRun ${nameExecutable} 42 + ''; 43 + 44 + meta.platforms = with lib.platforms; [ "x86_64-linux" ]; 45 + }
+24
pkgs/applications/video/losslesscut-bin/default.nix
··· 1 + { callPackage, stdenvNoCC, lib }: 2 + let 3 + version = "3.33.1"; 4 + appimage = callPackage ./appimage.nix { inherit version; }; 5 + dmg = callPackage ./dmg.nix { inherit version; }; 6 + windows = callPackage ./windows.nix { inherit version; }; 7 + in ( 8 + if stdenvNoCC.isDarwin then dmg 9 + else if stdenvNoCC.isCygwin then windows 10 + else appimage 11 + ).overrideAttrs 12 + (oldAttrs: { 13 + meta = with lib; { 14 + description = "The swiss army knife of lossless video/audio editing"; 15 + homepage = "https://mifi.no/losslesscut/"; 16 + license = licenses.mit; 17 + maintainers = with maintainers; [ ShamrockLee ]; 18 + } // oldAttrs.meta // { 19 + platforms = 20 + appimage.meta.platforms 21 + ++ dmg.meta.platforms 22 + ++ windows.meta.platforms; 23 + }; 24 + })
+31
pkgs/applications/video/losslesscut-bin/dmg.nix
··· 1 + { stdenvNoCC, lib, fetchurl, undmg, version }: 2 + 3 + let 4 + pname = "losslesscut"; 5 + nameRepo = "lossless-cut"; 6 + nameCamel = "LosslessCut"; 7 + nameSource = "${nameCamel}-mac.dmg"; 8 + nameApp = nameCamel + ".app"; 9 + owner = "mifi"; 10 + src = fetchurl { 11 + url = "https://github.com/${owner}/${nameRepo}/releases/download/v${version}/${nameSource}"; 12 + name = nameSource; 13 + sha256 = "0xa1avbwar7x7kv5yn2ldca4vj3nwaz0dhjm3bcdy59q914xn3dj"; 14 + }; 15 + in stdenvNoCC.mkDerivation { 16 + inherit pname version src; 17 + 18 + nativeBuildInputs = [ undmg ]; 19 + 20 + unpackPhase = '' 21 + undmg ${src} 22 + ''; 23 + sourceRoot = nameApp; 24 + 25 + installPhase = '' 26 + mkdir -p $out/Applications/${nameApp} 27 + cp -R . $out/Applications/${nameApp} 28 + ''; 29 + 30 + meta.platforms = lib.platforms.darwin; 31 + }
+45
pkgs/applications/video/losslesscut-bin/windows.nix
··· 1 + { stdenvNoCC 2 + , lib 3 + , fetchurl 4 + , unzip 5 + , version 6 + , useMklink ? false 7 + , customSymlinkCommand ? null 8 + }: 9 + let 10 + pname = "losslesscut"; 11 + nameRepo = "lossless-cut"; 12 + nameCamel = "LosslessCut"; 13 + nameSourceBase = "${nameCamel}-win"; 14 + nameSource = "${nameSourceBase}.zip"; 15 + nameExecutable = "${nameCamel}.exe"; 16 + owner = "mifi"; 17 + getSymlinkCommand = if (customSymlinkCommand != null) then customSymlinkCommand 18 + else if useMklink then (targetPath: linkPath: "mklink ${targetPath} ${linkPath}") 19 + else (targetPath: linkPath: "ln -s ${targetPath} ${linkPath}"); 20 + in stdenvNoCC.mkDerivation { 21 + inherit pname version; 22 + 23 + src = fetchurl { 24 + name = nameSource; 25 + url = "https://github.com/${owner}/${nameRepo}/releases/download/v${version}/${nameSource}"; 26 + sha256 = "1rq9frab0jl9y1mgmjhzsm734jvz0a646zq2wi5xzzspn4wikhvb"; 27 + }; 28 + 29 + nativeBuildInputs = [ unzip ]; 30 + 31 + unpackPhase = '' 32 + unzip $src -d ${nameSourceBase} 33 + ''; 34 + 35 + sourceRoot = nameSourceBase; 36 + 37 + installPhase = '' 38 + mkdir -p $out/bin $out/libexec 39 + cd .. 40 + mv ${nameSourceBase} $out/libexec 41 + 42 + '' + (getSymlinkCommand "${nameSourceBase}/${nameExecutable}" "$out/bin/${nameExecutable}"); 43 + 44 + meta.platforms = lib.platforms.windows; 45 + }
+3 -10
pkgs/applications/video/screenkey/default.nix
··· 1 1 { lib 2 2 , fetchFromGitLab 3 3 # native 4 - , intltool 5 4 , wrapGAppsHook 6 - , file 7 5 # not native 8 6 , xorg 9 7 , gobject-introspection ··· 13 11 14 12 python3.pkgs.buildPythonApplication rec { 15 13 pname = "screenkey"; 16 - version = "1.2"; 14 + version = "1.4"; 17 15 18 16 src = fetchFromGitLab { 19 17 owner = "screenkey"; 20 18 repo = "screenkey"; 21 19 rev = "v${version}"; 22 - sha256 = "1x13n57iy2pg3h3r994q3g5nbmh2gwk3qidmmcv0g7qa89n2gwbj"; 20 + sha256 = "1rfngmkh01g5192pi04r1fm7vsz6hg9k3qd313sn9rl9xkjgp11l"; 23 21 }; 24 22 25 23 nativeBuildInputs = [ 26 - python3.pkgs.distutils_extra 27 - # Shouldn't be needed once https://gitlab.com/screenkey/screenkey/-/issues/122 is fixed. 28 - intltool 29 - # We are not sure why is this needed, but without it we get "file: command 30 - # not found" errors during build. 31 - file 32 24 wrapGAppsHook 33 25 # for setup hook 34 26 gobject-introspection ··· 39 31 ]; 40 32 41 33 propagatedBuildInputs = with python3.pkgs; [ 34 + Babel 42 35 pycairo 43 36 pygobject3 44 37 ];
+4
pkgs/desktops/lxqt/liblxqt/default.nix
··· 43 43 patches = [ ./fix-application-path.patch ]; 44 44 45 45 postPatch = '' 46 + # https://github.com/NixOS/nixpkgs/issues/119766 47 + substituteInPlace lxqtbacklight/linux_backend/driver/libbacklight_backend.c \ 48 + --replace "pkexec lxqt-backlight_backend" "pkexec $out/bin/lxqt-backlight_backend" 49 + 46 50 sed -i "s|\''${POLKITQT-1_POLICY_FILES_INSTALL_DIR}|''${out}/share/polkit-1/actions|" CMakeLists.txt 47 51 ''; 48 52
+1 -4
pkgs/development/libraries/libpcap/default.nix
··· 17 17 # We need to force the autodetection because detection doesn't 18 18 # work in pure build environments. 19 19 configureFlags = [ 20 - ("--with-pcap=" + { 21 - linux = "linux"; 22 - darwin = "bpf"; 23 - }.${stdenv.hostPlatform.parsed.kernel.name}) 20 + "--with-pcap=${if stdenv.isLinux then "linux" else "bpf"}" 24 21 ] ++ optionals stdenv.isDarwin [ 25 22 "--disable-universal" 26 23 ] ++ optionals (stdenv.hostPlatform == stdenv.buildPlatform)
+33 -13
pkgs/development/lua-modules/generated-packages.nix
··· 693 693 }; 694 694 lua-resty-http = buildLuarocksPackage { 695 695 pname = "lua-resty-http"; 696 - version = "0.15-0"; 696 + version = "0.16.1-0"; 697 697 698 698 src = fetchurl { 699 - url = mirror://luarocks/lua-resty-http-0.15-0.src.rock; 700 - sha256 = "1121abcz9y8kis2wdg7i1m75y8lplk3k49v02y804bywbl2km4fz"; 699 + url = "mirror://luarocks/lua-resty-http-0.16.1-0.src.rock"; 700 + sha256 = "0n5hiablpc0dsccs6h76zg81wc3jb4mdvyfn9lfxnhls3yqwrgkj"; 701 701 }; 702 702 disabled = (luaOlder "5.1"); 703 703 propagatedBuildInputs = [ lua ]; ··· 705 705 meta = with lib; { 706 706 homepage = "https://github.com/ledgetech/lua-resty-http"; 707 707 description = "Lua HTTP client cosocket driver for OpenResty / ngx_lua."; 708 + maintainers = with maintainers; [ bbigras ]; 708 709 license.fullName = "2-clause BSD"; 709 710 }; 710 711 }; 711 712 lua-resty-jwt = buildLuarocksPackage { 712 713 pname = "lua-resty-jwt"; 713 - version = "0.2.2-0"; 714 + version = "0.2.3-0"; 714 715 715 716 src = fetchurl { 716 - url = mirror://luarocks/lua-resty-jwt-0.2.2-0.src.rock; 717 - sha256 = "1a4wwiwcjwgr59g2940a2h0i6n1c7xjy2px5bls3x5br4shwhswa"; 717 + url = "mirror://luarocks/lua-resty-jwt-0.2.3-0.src.rock"; 718 + sha256 = "0s7ghldwrjnhyc205pvcvgdzrgg46qz42v449vrri0cysh8ad91y"; 718 719 }; 719 720 disabled = (luaOlder "5.1"); 720 - propagatedBuildInputs = [ lua ]; 721 + propagatedBuildInputs = [ lua lua-resty-openssl ]; 721 722 722 723 meta = with lib; { 723 724 homepage = "https://github.com/cdbattags/lua-resty-jwt"; 724 725 description = "JWT for ngx_lua and LuaJIT."; 726 + maintainers = with maintainers; [ bbigras ]; 725 727 license.fullName = "Apache License Version 2"; 726 728 }; 727 729 }; 728 730 lua-resty-openidc = buildLuarocksPackage { 729 731 pname = "lua-resty-openidc"; 730 - version = "1.7.2-1"; 732 + version = "1.7.4-1"; 731 733 732 734 src = fetchurl { 733 - url = mirror://luarocks/lua-resty-openidc-1.7.2-1.src.rock; 734 - sha256 = "01mya69r4fncfrpqh5pn2acg18q3slds8zm976qgkjby0pzwzzw7"; 735 + url = "mirror://luarocks/lua-resty-openidc-1.7.4-1.src.rock"; 736 + sha256 = "07ny9rl8zir1c3plrbdmd2a23ysrx45qam196nhqsz118xrbds78"; 735 737 }; 736 738 disabled = (luaOlder "5.1"); 737 739 propagatedBuildInputs = [ lua lua-resty-http lua-resty-session lua-resty-jwt ]; ··· 739 741 meta = with lib; { 740 742 homepage = "https://github.com/zmartzone/lua-resty-openidc"; 741 743 description = "A library for NGINX implementing the OpenID Connect Relying Party (RP) and the OAuth 2.0 Resource Server (RS) functionality"; 744 + maintainers = with maintainers; [ bbigras ]; 742 745 license.fullName = "Apache 2.0"; 743 746 }; 744 747 }; 748 + lua-resty-openssl = buildLuarocksPackage { 749 + pname = "lua-resty-openssl"; 750 + version = "0.7.2-1"; 751 + 752 + src = fetchurl { 753 + url = "mirror://luarocks/lua-resty-openssl-0.7.2-1.src.rock"; 754 + sha256 = "00z6adib31ax4givq4zrhbfxa6l99l2hhlxnjpb6rfl4gf8h82kq"; 755 + }; 756 + 757 + meta = with lib; { 758 + homepage = "https://github.com/fffonion/lua-resty-openssl"; 759 + description = "No summary"; 760 + maintainers = with maintainers; [ bbigras ]; 761 + license.fullName = "BSD"; 762 + }; 763 + }; 745 764 lua-resty-session = buildLuarocksPackage { 746 765 pname = "lua-resty-session"; 747 - version = "3.6-1"; 766 + version = "3.8-1"; 748 767 749 768 src = fetchurl { 750 - url = mirror://luarocks/lua-resty-session-3.6-1.src.rock; 751 - sha256 = "1r5626x247d1vi5bzqfk11bl4d5c39h1iqj6mgndnwpnz43cag5i"; 769 + url = "mirror://luarocks/lua-resty-session-3.8-1.src.rock"; 770 + sha256 = "1x4l6n0dnm4br4p376r8nkg53hwm6a48xkhrzhsh9fcd5xqgqvxz"; 752 771 }; 753 772 disabled = (luaOlder "5.1"); 754 773 propagatedBuildInputs = [ lua ]; ··· 756 775 meta = with lib; { 757 776 homepage = "https://github.com/bungle/lua-resty-session"; 758 777 description = "Session Library for OpenResty – Flexible and Secure"; 778 + maintainers = with maintainers; [ bbigras ]; 759 779 license.fullName = "BSD"; 760 780 }; 761 781 };
+1
pkgs/development/node-packages/node-packages.json
··· 192 192 , "pyright" 193 193 , "quicktype" 194 194 , "react-native-cli" 195 + , "react-static" 195 196 , "react-tools" 196 197 , "readability-cli" 197 198 , "redoc-cli"
+2547 -344
pkgs/development/node-packages/node-packages.nix
··· 310 310 sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20"; 311 311 }; 312 312 }; 313 + "@babel/cli-7.13.14" = { 314 + name = "_at_babel_slash_cli"; 315 + packageName = "@babel/cli"; 316 + version = "7.13.14"; 317 + src = fetchurl { 318 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.13.14.tgz"; 319 + sha512 = "zmEFV8WBRsW+mPQumO1/4b34QNALBVReaiHJOkxhUsdo/AvYM62c+SKSuLi2aZ42t3ocK6OI0uwUXRvrIbREZw=="; 320 + }; 321 + }; 313 322 "@babel/code-frame-7.10.4" = { 314 323 name = "_at_babel_slash_code-frame"; 315 324 packageName = "@babel/code-frame"; ··· 1201 1210 sha512 = "jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA=="; 1202 1211 }; 1203 1212 }; 1213 + "@babel/plugin-transform-react-jsx-development-7.12.17" = { 1214 + name = "_at_babel_slash_plugin-transform-react-jsx-development"; 1215 + packageName = "@babel/plugin-transform-react-jsx-development"; 1216 + version = "7.12.17"; 1217 + src = fetchurl { 1218 + url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz"; 1219 + sha512 = "BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ=="; 1220 + }; 1221 + }; 1204 1222 "@babel/plugin-transform-react-jsx-self-7.12.13" = { 1205 1223 name = "_at_babel_slash_plugin-transform-react-jsx-self"; 1206 1224 packageName = "@babel/plugin-transform-react-jsx-self"; ··· 1219 1237 sha512 = "O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q=="; 1220 1238 }; 1221 1239 }; 1240 + "@babel/plugin-transform-react-pure-annotations-7.12.1" = { 1241 + name = "_at_babel_slash_plugin-transform-react-pure-annotations"; 1242 + packageName = "@babel/plugin-transform-react-pure-annotations"; 1243 + version = "7.12.1"; 1244 + src = fetchurl { 1245 + url = "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz"; 1246 + sha512 = "RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg=="; 1247 + }; 1248 + }; 1222 1249 "@babel/plugin-transform-regenerator-7.13.15" = { 1223 1250 name = "_at_babel_slash_plugin-transform-regenerator"; 1224 1251 packageName = "@babel/plugin-transform-regenerator"; ··· 1352 1379 src = fetchurl { 1353 1380 url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz"; 1354 1381 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 1382 + }; 1383 + }; 1384 + "@babel/preset-react-7.13.13" = { 1385 + name = "_at_babel_slash_preset-react"; 1386 + packageName = "@babel/preset-react"; 1387 + version = "7.13.13"; 1388 + src = fetchurl { 1389 + url = "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.13.13.tgz"; 1390 + sha512 = "gx+tDLIE06sRjKJkVtpZ/t3mzCDOnPG+ggHZG9lffUbX8+wC739x20YQc9V35Do6ZAxaUc/HhVHIiOzz5MvDmA=="; 1391 + }; 1392 + }; 1393 + "@babel/preset-stage-0-7.8.3" = { 1394 + name = "_at_babel_slash_preset-stage-0"; 1395 + packageName = "@babel/preset-stage-0"; 1396 + version = "7.8.3"; 1397 + src = fetchurl { 1398 + url = "https://registry.npmjs.org/@babel/preset-stage-0/-/preset-stage-0-7.8.3.tgz"; 1399 + sha512 = "+l6FlG1j73t4wh78W41StbcCz0/9a1/y+vxfnjtHl060kSmcgMfGzK9MEkLvrCOXfhp9RCX+d88sm6rOqxEIEQ=="; 1355 1400 }; 1356 1401 }; 1357 1402 "@babel/preset-stage-2-7.8.3" = { ··· 2182 2227 sha512 = "T4eQ0uqhbTScsoXVx10Tlp0C2RgNdAzlbe52qJ0Tn288/Nuztda5Z/aTCRd5Rp5MRYBycjAf4iNot6ZHAP864g=="; 2183 2228 }; 2184 2229 }; 2185 - "@fluentui/react-7.167.0" = { 2230 + "@fluentui/react-7.168.0" = { 2186 2231 name = "_at_fluentui_slash_react"; 2187 2232 packageName = "@fluentui/react"; 2188 - version = "7.167.0"; 2233 + version = "7.168.0"; 2189 2234 src = fetchurl { 2190 - url = "https://registry.npmjs.org/@fluentui/react/-/react-7.167.0.tgz"; 2191 - sha512 = "NuEywkYUvNouuqXuR6u/r8Dl2vo6RTbXCAm+WRDnSnwqsF8hablYdZL9ImgHczKOsRs6XK6X4lk//eiyE/Gtpw=="; 2235 + url = "https://registry.npmjs.org/@fluentui/react/-/react-7.168.0.tgz"; 2236 + sha512 = "eM+vt4RDRnI/IGZtenxYp7cTssMOkXVY3GqFLJkiK/gHTRI3goMWPpLA9tux0lbuiB3zvnvgLrJ2k0ihWa3FCw=="; 2192 2237 }; 2193 2238 }; 2194 2239 "@fluentui/react-focus-7.17.6" = { ··· 2335 2380 sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; 2336 2381 }; 2337 2382 }; 2338 - "@graphql-tools/merge-6.2.12" = { 2383 + "@graphql-tools/merge-6.2.13" = { 2339 2384 name = "_at_graphql-tools_slash_merge"; 2340 2385 packageName = "@graphql-tools/merge"; 2341 - version = "6.2.12"; 2386 + version = "6.2.13"; 2342 2387 src = fetchurl { 2343 - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.12.tgz"; 2344 - sha512 = "SWq09Nv04QN/A5TlB54gKn8K3qmRIilyYWFTfyMTfKWWIaJFJG7XDWB1ZNDFTRb1h9XvKr0LCi4nL/Po8zMbSg=="; 2388 + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.13.tgz"; 2389 + sha512 = "Qjlki0fp+bBQPinhdv7rv24eurvThZ5oIFvGMpLxMZplbw/ovJ2c6llwXr5PCuWAk9HGZsyM9NxxDgtTRfq3dQ=="; 2345 2390 }; 2346 2391 }; 2347 2392 "@graphql-tools/schema-7.1.3" = { ··· 2497 2542 sha512 = "yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow=="; 2498 2543 }; 2499 2544 }; 2500 - "@hapi/hoek-9.1.1" = { 2545 + "@hapi/hoek-9.2.0" = { 2501 2546 name = "_at_hapi_slash_hoek"; 2502 2547 packageName = "@hapi/hoek"; 2503 - version = "9.1.1"; 2548 + version = "9.2.0"; 2504 2549 src = fetchurl { 2505 - url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz"; 2506 - sha512 = "CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw=="; 2550 + url = "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz"; 2551 + sha512 = "sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug=="; 2507 2552 }; 2508 2553 }; 2509 2554 "@hapi/joi-15.1.1" = { ··· 3748 3793 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 3749 3794 }; 3750 3795 }; 3751 - "@netlify/build-11.0.2" = { 3796 + "@netlify/build-11.1.0" = { 3752 3797 name = "_at_netlify_slash_build"; 3753 3798 packageName = "@netlify/build"; 3754 - version = "11.0.2"; 3799 + version = "11.1.0"; 3755 3800 src = fetchurl { 3756 - url = "https://registry.npmjs.org/@netlify/build/-/build-11.0.2.tgz"; 3757 - sha512 = "VfuYi1IeMXlZZTwUpfc4GN2q18Icb03r3GSRO1Aw5XbH4Z+9yKWVup9w+pDz3LTlsf24FlrDi/K9/vXVIKjByQ=="; 3801 + url = "https://registry.npmjs.org/@netlify/build/-/build-11.1.0.tgz"; 3802 + sha512 = "544/wWXcFtiOb+XmTUqsn3OFxd/vyeggd2uM8t/V9mWg1PuP5UG4AqubnKglzxiwEHa7KGym8fQCq4HChTtLow=="; 3758 3803 }; 3759 3804 }; 3760 3805 "@netlify/cache-utils-1.0.7" = { ··· 3784 3829 sha512 = "oWlP+sWfnr0tXSqd3nfma9Abq1NvZc4lFbHPMvxU6UhAcrBOpizsMaVT9sUK0UcMwzR8xwESdskZajtFoHA28g=="; 3785 3830 }; 3786 3831 }; 3787 - "@netlify/functions-utils-1.3.24" = { 3832 + "@netlify/functions-utils-1.3.25" = { 3788 3833 name = "_at_netlify_slash_functions-utils"; 3789 3834 packageName = "@netlify/functions-utils"; 3790 - version = "1.3.24"; 3835 + version = "1.3.25"; 3791 3836 src = fetchurl { 3792 - url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.24.tgz"; 3793 - sha512 = "rz2dGF6ViMGXPmERGdEq4WjQvGH77qXOI7JfSftKAyfpOWMlLmY6MrGdDNLlkOqNVv7xh9cxsfmXtN25Q5YHIg=="; 3837 + url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.25.tgz"; 3838 + sha512 = "iCGVHlj6XNqOIQxREDbhfWEs8RBLGpXLrZKNHisG8PnJvRmnlS+EyVb1on2yV7+nvMqoqssNUeDY6tvQmwuPng=="; 3794 3839 }; 3795 3840 }; 3796 3841 "@netlify/git-utils-1.0.8" = { ··· 4882 4927 sha512 = "Z1MK912OTC+InURygDElVFAbnAdA8x9in+6GSHb/8rzWmp5iDA7PjU85OCOYH8hBfAwKlWINhR372tUUnUHImg=="; 4883 4928 }; 4884 4929 }; 4930 + "@reach/router-1.3.4" = { 4931 + name = "_at_reach_slash_router"; 4932 + packageName = "@reach/router"; 4933 + version = "1.3.4"; 4934 + src = fetchurl { 4935 + url = "https://registry.npmjs.org/@reach/router/-/router-1.3.4.tgz"; 4936 + sha512 = "+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA=="; 4937 + }; 4938 + }; 4885 4939 "@react-native-community/cli-debugger-ui-4.13.1" = { 4886 4940 name = "_at_react-native-community_slash_cli-debugger-ui"; 4887 4941 packageName = "@react-native-community/cli-debugger-ui"; ··· 5251 5305 sha512 = "FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ=="; 5252 5306 }; 5253 5307 }; 5254 - "@sindresorhus/slugify-1.1.0" = { 5308 + "@sindresorhus/slugify-1.1.2" = { 5255 5309 name = "_at_sindresorhus_slash_slugify"; 5256 5310 packageName = "@sindresorhus/slugify"; 5257 - version = "1.1.0"; 5311 + version = "1.1.2"; 5258 5312 src = fetchurl { 5259 - url = "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.0.tgz"; 5260 - sha512 = "ujZRbmmizX26yS/HnB3P9QNlNa4+UvHh+rIse3RbOXLp8yl6n1TxB4t7NHggtVgS8QmmOtzXo48kCxZGACpkPw=="; 5313 + url = "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-1.1.2.tgz"; 5314 + sha512 = "V9nR/W0Xd9TSGXpZ4iFUcFGhuOJtZX82Fzxj1YISlbSgKvIiNa7eLEZrT0vAraPOt++KHauIVNYgGRgjc13dXA=="; 5261 5315 }; 5262 5316 }; 5263 5317 "@sindresorhus/transliterate-0.1.2" = { ··· 5368 5422 sha512 = "E/Pfdze/WFfxwyuTFcfhQN1SwyUsc43yuCoW63RVBCaxTD6OzhVD2Pvc/Sy7BjiWUfmelzyKkIBpoow8zZX7Zg=="; 5369 5423 }; 5370 5424 }; 5371 - "@snyk/fix-1.539.0" = { 5425 + "@snyk/fix-1.547.0" = { 5372 5426 name = "_at_snyk_slash_fix"; 5373 5427 packageName = "@snyk/fix"; 5374 - version = "1.539.0"; 5428 + version = "1.547.0"; 5375 5429 src = fetchurl { 5376 - url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.539.0.tgz"; 5377 - sha512 = "oZ3BdRgbkyp/3P2DyLsz11n5xbRzvhIySDv9Qg0UWyjByh9SbR70CCqa7VOCXuTCRpFXIZf15GYNpNLBdOJ2Rw=="; 5430 + url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.547.0.tgz"; 5431 + sha512 = "ANTkn8PHsmPelQ8W8aiS+R3JBzUr0fjcHT67eTvr2a0h51qzzgBFEwhd8GH1Wuo0Nmvm3bsKkk5DxkxTtQWPtw=="; 5378 5432 }; 5379 5433 }; 5380 5434 "@snyk/gemfile-1.2.0" = { ··· 5431 5485 sha512 = "NX8bpIu7oG5cuSSm6WvtxqcCuJs2gRjtKhtuSeF1p5TYXyESs3FXQ0nHjfY90LiyTTc+PW/UBq6SKbBA6bCBww=="; 5432 5486 }; 5433 5487 }; 5434 - "@snyk/mix-parser-1.3.0" = { 5488 + "@snyk/mix-parser-1.3.1" = { 5435 5489 name = "_at_snyk_slash_mix-parser"; 5436 5490 packageName = "@snyk/mix-parser"; 5437 - version = "1.3.0"; 5491 + version = "1.3.1"; 5438 5492 src = fetchurl { 5439 - url = "https://registry.npmjs.org/@snyk/mix-parser/-/mix-parser-1.3.0.tgz"; 5440 - sha512 = "Iizn7xkw+h1Zg3+PRbo5r37MaqbgvWtKsIIXKWIAoVwy+oYGsJ6u2mo+o/zZ9Dga4+iQ5xy0Q0sNbFzxku2oCQ=="; 5493 + url = "https://registry.npmjs.org/@snyk/mix-parser/-/mix-parser-1.3.1.tgz"; 5494 + sha512 = "XvANfbbaRkCpmIxYJGa+nSy1hUvGOHPTY+J3lpJrJAsEPB3fCT/z9hMuIJJ2c4RXZ9HndkpoSz2oj27m/DiBKQ=="; 5441 5495 }; 5442 5496 }; 5443 5497 "@snyk/rpm-parser-2.2.1" = { ··· 5467 5521 sha512 = "hiFiSmWGLc2tOI7FfgIhVdFzO2f69im8O6p3OV4xEZ/Ss1l58vwtqudItoswsk7wj/azRlgfBW8wGu2MjoudQg=="; 5468 5522 }; 5469 5523 }; 5470 - "@snyk/snyk-hex-plugin-1.1.1" = { 5524 + "@snyk/snyk-hex-plugin-1.1.2" = { 5471 5525 name = "_at_snyk_slash_snyk-hex-plugin"; 5472 5526 packageName = "@snyk/snyk-hex-plugin"; 5473 - version = "1.1.1"; 5527 + version = "1.1.2"; 5474 5528 src = fetchurl { 5475 - url = "https://registry.npmjs.org/@snyk/snyk-hex-plugin/-/snyk-hex-plugin-1.1.1.tgz"; 5476 - sha512 = "NXgslDo6qSvsKy2cR3Yoo/Z6A3Svae9a96j+0OUnvcZX7i6JeODreqXFD1k0vPM2JnL1G7qcdblPxz7M7ZAZmQ=="; 5529 + url = "https://registry.npmjs.org/@snyk/snyk-hex-plugin/-/snyk-hex-plugin-1.1.2.tgz"; 5530 + sha512 = "8zj19XxlBqTfe12CoeVgT0WtRBk0HEjJVO8hYB/AM71XVjucFzQT4/e/hR8mCUSA7i+B/F8X8iGPhs7Uj3J+zA=="; 5477 5531 }; 5478 5532 }; 5479 5533 "@starptech/expression-parser-0.10.0" = { ··· 11002 11056 sha512 = "u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g=="; 11003 11057 }; 11004 11058 }; 11059 + "babel-plugin-macros-2.8.0" = { 11060 + name = "babel-plugin-macros"; 11061 + packageName = "babel-plugin-macros"; 11062 + version = "2.8.0"; 11063 + src = fetchurl { 11064 + url = "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz"; 11065 + sha512 = "SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg=="; 11066 + }; 11067 + }; 11005 11068 "babel-plugin-minify-builtins-0.5.0" = { 11006 11069 name = "babel-plugin-minify-builtins"; 11007 11070 packageName = "babel-plugin-minify-builtins"; ··· 11236 11299 sha1 = "98c1d21e255736573f93ece54459f6ce24985d39"; 11237 11300 }; 11238 11301 }; 11302 + "babel-plugin-transform-react-remove-prop-types-0.4.24" = { 11303 + name = "babel-plugin-transform-react-remove-prop-types"; 11304 + packageName = "babel-plugin-transform-react-remove-prop-types"; 11305 + version = "0.4.24"; 11306 + src = fetchurl { 11307 + url = "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz"; 11308 + sha512 = "eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA=="; 11309 + }; 11310 + }; 11239 11311 "babel-plugin-transform-regexp-constructors-0.4.3" = { 11240 11312 name = "babel-plugin-transform-regexp-constructors"; 11241 11313 packageName = "babel-plugin-transform-regexp-constructors"; ··· 11288 11360 src = fetchurl { 11289 11361 url = "https://registry.npmjs.org/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz"; 11290 11362 sha1 = "be241ca81404030678b748717322b89d0c8fe280"; 11363 + }; 11364 + }; 11365 + "babel-plugin-universal-import-4.0.2" = { 11366 + name = "babel-plugin-universal-import"; 11367 + packageName = "babel-plugin-universal-import"; 11368 + version = "4.0.2"; 11369 + src = fetchurl { 11370 + url = "https://registry.npmjs.org/babel-plugin-universal-import/-/babel-plugin-universal-import-4.0.2.tgz"; 11371 + sha512 = "VTtHsmvwRBkX3yLK4e+pFwk88BC6iNFqS2J8CCx2ddQc7RjXoRhuXXIgYCng21DYNty9IicCwDdTDjdr+TM7eg=="; 11291 11372 }; 11292 11373 }; 11293 11374 "babel-polyfill-6.23.0" = { ··· 11893 11974 sha512 = "GupIidtCvLbKhXnA1sxvrwa+gh95qbjafy7P1U1x/2DHxNabXq4nGW0x3rmgzlJMYlVl+c8fMxoMRIwpKYlgcQ=="; 11894 11975 }; 11895 11976 }; 11977 + "bfj-6.1.2" = { 11978 + name = "bfj"; 11979 + packageName = "bfj"; 11980 + version = "6.1.2"; 11981 + src = fetchurl { 11982 + url = "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz"; 11983 + sha512 = "BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw=="; 11984 + }; 11985 + }; 11896 11986 "bheep-0.1.5" = { 11897 11987 name = "bheep"; 11898 11988 packageName = "bheep"; ··· 11927 12017 src = fetchurl { 11928 12018 url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz"; 11929 12019 sha512 = "j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w=="; 12020 + }; 12021 + }; 12022 + "big.js-3.2.0" = { 12023 + name = "big.js"; 12024 + packageName = "big.js"; 12025 + version = "3.2.0"; 12026 + src = fetchurl { 12027 + url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz"; 12028 + sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q=="; 11930 12029 }; 11931 12030 }; 11932 12031 "big.js-5.2.2" = { ··· 14080 14179 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 14081 14180 }; 14082 14181 }; 14083 - "caniuse-lite-1.0.30001208" = { 14182 + "caniuse-lite-1.0.30001209" = { 14084 14183 name = "caniuse-lite"; 14085 14184 packageName = "caniuse-lite"; 14086 - version = "1.0.30001208"; 14185 + version = "1.0.30001209"; 14087 14186 src = fetchurl { 14088 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001208.tgz"; 14089 - sha512 = "OE5UE4+nBOro8Dyvv0lfx+SRtfVIOM9uhKqFmJeUbGriqhhStgp1A0OyBpgy3OUF8AhYCT+PVwPC1gMl2ZcQMA=="; 14187 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001209.tgz"; 14188 + sha512 = "2Ktt4OeRM7EM/JaOZjuLzPYAIqmbwQMNnYbgooT+icoRGrKOyAxA1xhlnotBD1KArRSPsuJp3TdYcZYrL7qNxA=="; 14090 14189 }; 14091 14190 }; 14092 14191 "canvas-2.7.0" = { ··· 14143 14242 sha512 = "mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ=="; 14144 14243 }; 14145 14244 }; 14245 + "case-sensitive-paths-webpack-plugin-2.4.0" = { 14246 + name = "case-sensitive-paths-webpack-plugin"; 14247 + packageName = "case-sensitive-paths-webpack-plugin"; 14248 + version = "2.4.0"; 14249 + src = fetchurl { 14250 + url = "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz"; 14251 + sha512 = "roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw=="; 14252 + }; 14253 + }; 14146 14254 "caseless-0.11.0" = { 14147 14255 name = "caseless"; 14148 14256 packageName = "caseless"; ··· 14521 14629 sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82"; 14522 14630 }; 14523 14631 }; 14632 + "check-types-8.0.3" = { 14633 + name = "check-types"; 14634 + packageName = "check-types"; 14635 + version = "8.0.3"; 14636 + src = fetchurl { 14637 + url = "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz"; 14638 + sha512 = "YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ=="; 14639 + }; 14640 + }; 14524 14641 "cheerio-0.17.0" = { 14525 14642 name = "cheerio"; 14526 14643 packageName = "cheerio"; ··· 14584 14701 sha512 = "hjx1XE1M/D5pAtMgvWwE21QClmAEeGHOIDfycgmndisdNgI6PE1cGRQkMGBcsbUbmEQyWu5PJLUcAOjtQS8DWw=="; 14585 14702 }; 14586 14703 }; 14587 - "cheerio-select-1.3.0" = { 14704 + "cheerio-select-1.4.0" = { 14588 14705 name = "cheerio-select"; 14589 14706 packageName = "cheerio-select"; 14590 - version = "1.3.0"; 14707 + version = "1.4.0"; 14591 14708 src = fetchurl { 14592 - url = "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.3.0.tgz"; 14593 - sha512 = "mLgqdHxVOQyhOIkG5QnRkDg7h817Dkf0dAvlCio2TJMmR72cJKH0bF28SHXvLkVrGcGOiub0/Bs/CMnPeQO7qw=="; 14709 + url = "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.4.0.tgz"; 14710 + sha512 = "sobR3Yqz27L553Qa7cK6rtJlMDbiKPdNywtR95Sj/YgfpLfy0u6CGJuaBKe5YE/vTc23SCRKxWSdlon/w6I/Ew=="; 14594 14711 }; 14595 14712 }; 14596 14713 "cheerio-select-tmp-0.1.1" = { ··· 14870 14987 src = fetchurl { 14871 14988 url = "https://registry.npmjs.org/circular-append-file/-/circular-append-file-1.0.1.tgz"; 14872 14989 sha512 = "BUDFvrBTCdeVhg9E05PX4XgMegk6xWB69uGwyuATEg7PMfa9lGU1mzFSK0xWNW2O0i9CAQHN0oIdXI/kI2hPkg=="; 14990 + }; 14991 + }; 14992 + "circular-dependency-plugin-5.2.2" = { 14993 + name = "circular-dependency-plugin"; 14994 + packageName = "circular-dependency-plugin"; 14995 + version = "5.2.2"; 14996 + src = fetchurl { 14997 + url = "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz"; 14998 + sha512 = "g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ=="; 14873 14999 }; 14874 15000 }; 14875 15001 "circular-json-0.3.3" = { ··· 17528 17654 sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="; 17529 17655 }; 17530 17656 }; 17657 + "create-react-context-0.3.0" = { 17658 + name = "create-react-context"; 17659 + packageName = "create-react-context"; 17660 + version = "0.3.0"; 17661 + src = fetchurl { 17662 + url = "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz"; 17663 + sha512 = "dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw=="; 17664 + }; 17665 + }; 17531 17666 "create-torrent-4.7.0" = { 17532 17667 name = "create-torrent"; 17533 17668 packageName = "create-torrent"; ··· 17789 17924 sha512 = "BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA=="; 17790 17925 }; 17791 17926 }; 17927 + "css-loader-2.1.1" = { 17928 + name = "css-loader"; 17929 + packageName = "css-loader"; 17930 + version = "2.1.1"; 17931 + src = fetchurl { 17932 + url = "https://registry.npmjs.org/css-loader/-/css-loader-2.1.1.tgz"; 17933 + sha512 = "OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w=="; 17934 + }; 17935 + }; 17792 17936 "css-loader-3.6.0" = { 17793 17937 name = "css-loader"; 17794 17938 packageName = "css-loader"; ··· 17861 18005 sha512 = "qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA=="; 17862 18006 }; 17863 18007 }; 17864 - "css-select-4.0.0" = { 18008 + "css-select-4.1.2" = { 17865 18009 name = "css-select"; 17866 18010 packageName = "css-select"; 17867 - version = "4.0.0"; 18011 + version = "4.1.2"; 17868 18012 src = fetchurl { 17869 - url = "https://registry.npmjs.org/css-select/-/css-select-4.0.0.tgz"; 17870 - sha512 = "I7favumBlDP/nuHBKLfL5RqvlvRdn/W29evvWJ+TaoGPm7QD+xSIN5eY2dyGjtkUmemh02TZrqJb4B8DWo6PoQ=="; 18013 + url = "https://registry.npmjs.org/css-select/-/css-select-4.1.2.tgz"; 18014 + sha512 = "nu5ye2Hg/4ISq4XqdLY2bEatAcLIdt3OYGFc9Tm9n7VSlFBcfRv0gBNksHRgSdUDQGtN3XrZ94ztW+NfzkFSUw=="; 17871 18015 }; 17872 18016 }; 17873 18017 "css-select-base-adapter-0.1.1" = { ··· 20804 20948 sha512 = "J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA=="; 20805 20949 }; 20806 20950 }; 20807 - "domhandler-4.1.0" = { 20951 + "domhandler-4.2.0" = { 20808 20952 name = "domhandler"; 20809 20953 packageName = "domhandler"; 20810 - version = "4.1.0"; 20954 + version = "4.2.0"; 20811 20955 src = fetchurl { 20812 - url = "https://registry.npmjs.org/domhandler/-/domhandler-4.1.0.tgz"; 20813 - sha512 = "/6/kmsGlMY4Tup/nGVutdrK9yQi4YjWVcVeoQmixpzjOUK1U7pQkvAPHBJeUxOgxF0J8f8lwCJSlCfD0V4CMGQ=="; 20956 + url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz"; 20957 + sha512 = "zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA=="; 20814 20958 }; 20815 20959 }; 20816 20960 "domino-2.1.6" = { ··· 20858 21002 sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; 20859 21003 }; 20860 21004 }; 20861 - "domutils-2.5.2" = { 21005 + "domutils-2.6.0" = { 20862 21006 name = "domutils"; 20863 21007 packageName = "domutils"; 20864 - version = "2.5.2"; 21008 + version = "2.6.0"; 20865 21009 src = fetchurl { 20866 - url = "https://registry.npmjs.org/domutils/-/domutils-2.5.2.tgz"; 20867 - sha512 = "MHTthCb1zj8f1GVfRpeZUbohQf/HdBos0oX5gZcQFepOZPLLRyj6Wn7XS7EMnY7CVpwv8863u2vyE83Hfu28HQ=="; 21010 + url = "https://registry.npmjs.org/domutils/-/domutils-2.6.0.tgz"; 21011 + sha512 = "y0BezHuy4MDYxh6OvolXYsH+1EMGmFbwv5FKW7ovwMG6zTPWqNPq3WF9ayZssFq+UlKdffGLbOEaghNdaOm1WA=="; 20868 21012 }; 20869 21013 }; 20870 21014 "dot-case-3.0.4" = { ··· 21009 21153 src = fetchurl { 21010 21154 url = "https://registry.npmjs.org/download-git-repo/-/download-git-repo-1.1.0.tgz"; 21011 21155 sha512 = "yXcCvhkPKmq5M2cQXss6Qbig+LZnzRIT40XCYm/QCRnJaPG867StB1qnsBLxOGrPH1YEIRWW2gJq7LLMyw+NmA=="; 21156 + }; 21157 + }; 21158 + "download-git-repo-2.0.0" = { 21159 + name = "download-git-repo"; 21160 + packageName = "download-git-repo"; 21161 + version = "2.0.0"; 21162 + src = fetchurl { 21163 + url = "https://registry.npmjs.org/download-git-repo/-/download-git-repo-2.0.0.tgz"; 21164 + sha512 = "al8ZOwpm/DvCd7XC8PupeuNlC2TrvsMxW3FOx1bCbHNBhP1lYjOn9KnPqnZ3o/jz1vxCC5NHGJA7LT+GYMLcHA=="; 21012 21165 }; 21013 21166 }; 21014 21167 "download-git-repo-3.0.2" = { ··· 21526 21679 sha512 = "5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw=="; 21527 21680 }; 21528 21681 }; 21682 + "emojis-list-2.1.0" = { 21683 + name = "emojis-list"; 21684 + packageName = "emojis-list"; 21685 + version = "2.1.0"; 21686 + src = fetchurl { 21687 + url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz"; 21688 + sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389"; 21689 + }; 21690 + }; 21529 21691 "emojis-list-3.0.0" = { 21530 21692 name = "emojis-list"; 21531 21693 packageName = "emojis-list"; ··· 22219 22381 sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA=="; 22220 22382 }; 22221 22383 }; 22222 - "esbuild-0.11.11" = { 22384 + "esbuild-0.11.12" = { 22223 22385 name = "esbuild"; 22224 22386 packageName = "esbuild"; 22225 - version = "0.11.11"; 22387 + version = "0.11.12"; 22226 22388 src = fetchurl { 22227 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.11.11.tgz"; 22228 - sha512 = "iq5YdV63vY/nUAFIvY92BXVkYjMbOchnofLKoLKMPZIa4uuIJAJG9WRA+ZRjQBZbrsORUwvZcANeG2d3p46PJQ=="; 22389 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.11.12.tgz"; 22390 + sha512 = "c8cso/1RwVj+fbDvLtUgSG4ZJQ0y9Zdrl6Ot/GAjyy4pdMCHaFnDMts5gqFnWRPLajWtEnI+3hlET4R9fVoZng=="; 22229 22391 }; 22230 22392 }; 22231 22393 "esc-exit-2.0.2" = { ··· 23677 23839 sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="; 23678 23840 }; 23679 23841 }; 23842 + "extract-css-chunks-webpack-plugin-4.9.0" = { 23843 + name = "extract-css-chunks-webpack-plugin"; 23844 + packageName = "extract-css-chunks-webpack-plugin"; 23845 + version = "4.9.0"; 23846 + src = fetchurl { 23847 + url = "https://registry.npmjs.org/extract-css-chunks-webpack-plugin/-/extract-css-chunks-webpack-plugin-4.9.0.tgz"; 23848 + sha512 = "HNuNPCXRMqJDQ1OHAUehoY+0JVCnw9Y/H22FQzYVwo8Ulgew98AGDu0grnY5c7xwiXHjQa6yJ/1dxLCI/xqTyQ=="; 23849 + }; 23850 + }; 23680 23851 "extract-files-9.0.0" = { 23681 23852 name = "extract-files"; 23682 23853 packageName = "extract-files"; ··· 24262 24433 sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; 24263 24434 }; 24264 24435 }; 24436 + "file-loader-3.0.1" = { 24437 + name = "file-loader"; 24438 + packageName = "file-loader"; 24439 + version = "3.0.1"; 24440 + src = fetchurl { 24441 + url = "https://registry.npmjs.org/file-loader/-/file-loader-3.0.1.tgz"; 24442 + sha512 = "4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw=="; 24443 + }; 24444 + }; 24265 24445 "file-loader-6.0.0" = { 24266 24446 name = "file-loader"; 24267 24447 packageName = "file-loader"; ··· 24478 24658 sha512 = "LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg=="; 24479 24659 }; 24480 24660 }; 24481 - "filesize-6.2.2" = { 24661 + "filesize-6.2.5" = { 24482 24662 name = "filesize"; 24483 24663 packageName = "filesize"; 24484 - version = "6.2.2"; 24664 + version = "6.2.5"; 24485 24665 src = fetchurl { 24486 - url = "https://registry.npmjs.org/filesize/-/filesize-6.2.2.tgz"; 24487 - sha512 = "yMYcRU6K9yNRSYZWfrXOuNiQQx0aJiXJsJYAR2R2andmIFo5IJrfqoXw+2h1W8zLRxy612LwwY1sH0zuxUsz0g=="; 24666 + url = "https://registry.npmjs.org/filesize/-/filesize-6.2.5.tgz"; 24667 + sha512 = "JkM1y2+IpnEwp3pbXOUXR+9ytuZE07ZnWb/OR0H/WOSkjWASpmXgC0ZBIs4/SAYq9wHqExeQxcYNoJKf6s0RCg=="; 24488 24668 }; 24489 24669 }; 24490 24670 "filestream-5.0.0" = { ··· 25655 25835 src = fetchurl { 25656 25836 url = "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz"; 25657 25837 sha512 = "cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q=="; 25838 + }; 25839 + }; 25840 + "fs-readdir-recursive-1.1.0" = { 25841 + name = "fs-readdir-recursive"; 25842 + packageName = "fs-readdir-recursive"; 25843 + version = "1.1.0"; 25844 + src = fetchurl { 25845 + url = "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz"; 25846 + sha512 = "GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA=="; 25658 25847 }; 25659 25848 }; 25660 25849 "fs-routes-2.0.0" = { ··· 26368 26557 sha1 = "c57d1145eec16465ab9bfbdf575262b1691624d6"; 26369 26558 }; 26370 26559 }; 26560 + "git-promise-1.0.0" = { 26561 + name = "git-promise"; 26562 + packageName = "git-promise"; 26563 + version = "1.0.0"; 26564 + src = fetchurl { 26565 + url = "https://registry.npmjs.org/git-promise/-/git-promise-1.0.0.tgz"; 26566 + sha512 = "GAhWltNB3/sf/48MwE7MbObDM2tDls9YIvVlUmga3gyqSMZG3wHEMhGSQB6genvmnbbHMxCkpVVl5YP6qGQn3w=="; 26567 + }; 26568 + }; 26371 26569 "git-raw-commits-2.0.10" = { 26372 26570 name = "git-raw-commits"; 26373 26571 packageName = "git-raw-commits"; ··· 27449 27647 sha512 = "OY0BfPKe3QnMsY9MzTHTSKn+Vl2l1CcLe6BwDEQj00mbbkl5nyQ/7EUREstg4fQNZ8iYE7br4JJ7TdKeDOPWmw=="; 27450 27648 }; 27451 27649 }; 27650 + "gud-1.0.0" = { 27651 + name = "gud"; 27652 + packageName = "gud"; 27653 + version = "1.0.0"; 27654 + src = fetchurl { 27655 + url = "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz"; 27656 + sha512 = "zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw=="; 27657 + }; 27658 + }; 27452 27659 "gulp-4.0.2" = { 27453 27660 name = "gulp"; 27454 27661 packageName = "gulp"; ··· 28367 28574 sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA=="; 28368 28575 }; 28369 28576 }; 28577 + "hoopy-0.1.4" = { 28578 + name = "hoopy"; 28579 + packageName = "hoopy"; 28580 + version = "0.1.4"; 28581 + src = fetchurl { 28582 + url = "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz"; 28583 + sha512 = "HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ=="; 28584 + }; 28585 + }; 28370 28586 "hoox-0.0.1" = { 28371 28587 name = "hoox"; 28372 28588 packageName = "hoox"; ··· 28554 28770 src = fetchurl { 28555 28771 url = "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz"; 28556 28772 sha512 = "uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w=="; 28773 + }; 28774 + }; 28775 + "html-webpack-plugin-3.2.0" = { 28776 + name = "html-webpack-plugin"; 28777 + packageName = "html-webpack-plugin"; 28778 + version = "3.2.0"; 28779 + src = fetchurl { 28780 + url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz"; 28781 + sha1 = "b01abbd723acaaa7b37b6af4492ebda03d9dd37b"; 28557 28782 }; 28558 28783 }; 28559 28784 "html-webpack-plugin-4.3.0" = { ··· 29311 29536 src = fetchurl { 29312 29537 url = "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz"; 29313 29538 sha512 = "aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA=="; 29539 + }; 29540 + }; 29541 + "import-cwd-2.1.0" = { 29542 + name = "import-cwd"; 29543 + packageName = "import-cwd"; 29544 + version = "2.1.0"; 29545 + src = fetchurl { 29546 + url = "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz"; 29547 + sha1 = "aa6cf36e722761285cb371ec6519f53e2435b0a9"; 29314 29548 }; 29315 29549 }; 29316 29550 "import-cwd-3.0.0" = { ··· 29340 29574 sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 29341 29575 }; 29342 29576 }; 29577 + "import-from-2.1.0" = { 29578 + name = "import-from"; 29579 + packageName = "import-from"; 29580 + version = "2.1.0"; 29581 + src = fetchurl { 29582 + url = "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz"; 29583 + sha1 = "335db7f2a7affd53aaa471d4b8021dee36b7f3b1"; 29584 + }; 29585 + }; 29343 29586 "import-from-3.0.0" = { 29344 29587 name = "import-from"; 29345 29588 packageName = "import-from"; ··· 29592 29835 sha512 = "zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw=="; 29593 29836 }; 29594 29837 }; 29595 - "init-package-json-2.0.2" = { 29838 + "init-package-json-2.0.3" = { 29596 29839 name = "init-package-json"; 29597 29840 packageName = "init-package-json"; 29598 - version = "2.0.2"; 29841 + version = "2.0.3"; 29599 29842 src = fetchurl { 29600 - url = "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.2.tgz"; 29601 - sha512 = "PO64kVeArePvhX7Ff0jVWkpnE1DfGRvaWcStYrPugcJz9twQGYibagKJuIMHCX7ENcp0M6LJlcjLBuLD5KeJMg=="; 29843 + url = "https://registry.npmjs.org/init-package-json/-/init-package-json-2.0.3.tgz"; 29844 + sha512 = "tk/gAgbMMxR6fn1MgMaM1HpU1ryAmBWWitnxG5OhuNXeX0cbpbgV5jA4AIpQJVNoyOfOevTtO6WX+rPs+EFqaQ=="; 29602 29845 }; 29603 29846 }; 29604 29847 "ink-2.7.1" = { ··· 29977 30220 src = fetchurl { 29978 30221 url = "https://registry.npmjs.org/intersect/-/intersect-1.0.1.tgz"; 29979 30222 sha1 = "332650e10854d8c0ac58c192bdc27a8bf7e7a30c"; 30223 + }; 30224 + }; 30225 + "intersection-observer-0.7.0" = { 30226 + name = "intersection-observer"; 30227 + packageName = "intersection-observer"; 30228 + version = "0.7.0"; 30229 + src = fetchurl { 30230 + url = "https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.7.0.tgz"; 30231 + sha512 = "Id0Fij0HsB/vKWGeBe9PxeY45ttRiBmhFyyt/geBdDHBYNctMRTE3dC1U3ujzz3lap+hVXlEcVaB56kZP/eEUg=="; 29980 30232 }; 29981 30233 }; 29982 30234 "into-stream-2.0.1" = { ··· 32175 32427 sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="; 32176 32428 }; 32177 32429 }; 32178 - "js-beautify-1.13.11" = { 32430 + "js-beautify-1.13.13" = { 32179 32431 name = "js-beautify"; 32180 32432 packageName = "js-beautify"; 32181 - version = "1.13.11"; 32433 + version = "1.13.13"; 32182 32434 src = fetchurl { 32183 - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.11.tgz"; 32184 - sha512 = "+3CW1fQqkV7aXIvprevNYfSrKrASQf02IstAZCVSNh+/IS5ciaOtE7erfjyowdMYZZmP2A7SMFkcJ28qCl84+A=="; 32435 + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.13.tgz"; 32436 + sha512 = "oH+nc0U5mOAqX8M5JO1J0Pw/7Q35sAdOsM5W3i87pir9Ntx6P/5Gx1xLNoK+MGyvHk4rqqRCE4Oq58H6xl2W7A=="; 32185 32437 }; 32186 32438 }; 32187 32439 "js-git-0.7.8" = { ··· 32814 33066 sha512 = "c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA=="; 32815 33067 }; 32816 33068 }; 33069 + "json5-0.5.1" = { 33070 + name = "json5"; 33071 + packageName = "json5"; 33072 + version = "0.5.1"; 33073 + src = fetchurl { 33074 + url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"; 33075 + sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; 33076 + }; 33077 + }; 32817 33078 "json5-1.0.1" = { 32818 33079 name = "json5"; 32819 33080 packageName = "json5"; ··· 33436 33697 sha512 = "zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA=="; 33437 33698 }; 33438 33699 }; 33439 - "khroma-1.4.0" = { 33700 + "khroma-1.4.1" = { 33440 33701 name = "khroma"; 33441 33702 packageName = "khroma"; 33442 - version = "1.4.0"; 33703 + version = "1.4.1"; 33443 33704 src = fetchurl { 33444 - url = "https://registry.npmjs.org/khroma/-/khroma-1.4.0.tgz"; 33445 - sha512 = "C34rnH/WgniJBhbj/bXNYowRUtiNDwSdnjLraHwindnZIeZ3NOvymRMNHmj4KeZWFTbn+cVxj2iT/jsonG2Xrg=="; 33705 + url = "https://registry.npmjs.org/khroma/-/khroma-1.4.1.tgz"; 33706 + sha512 = "+GmxKvmiRuCcUYDgR7g5Ngo0JEDeOsGdNONdU2zsiBQaK4z19Y2NvXqfEDE0ZiIrg45GTZyAnPLVsLZZACYm3Q=="; 33446 33707 }; 33447 33708 }; 33448 33709 "killable-1.0.1" = { ··· 34424 34685 src = fetchurl { 34425 34686 url = "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz"; 34426 34687 sha512 = "92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw=="; 34688 + }; 34689 + }; 34690 + "loader-utils-0.2.17" = { 34691 + name = "loader-utils"; 34692 + packageName = "loader-utils"; 34693 + version = "0.2.17"; 34694 + src = fetchurl { 34695 + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz"; 34696 + sha1 = "f86e6374d43205a6e6c60e9196f17c0299bfb348"; 34427 34697 }; 34428 34698 }; 34429 34699 "loader-utils-1.4.0" = { ··· 36703 36973 sha512 = "aU1TzmBKcWNNYvH9pjq6u92BML+Hz3h5S/QpfTFwiQF852pLT+9qHsrhM9JYipkOXZxGn+sGH8oyJE9FD9WezQ=="; 36704 36974 }; 36705 36975 }; 36706 - "markdown-it-12.0.5" = { 36976 + "markdown-it-12.0.6" = { 36707 36977 name = "markdown-it"; 36708 36978 packageName = "markdown-it"; 36709 - version = "12.0.5"; 36979 + version = "12.0.6"; 36710 36980 src = fetchurl { 36711 - url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.0.5.tgz"; 36712 - sha512 = "9KB992Yy2TedaoKETgZPL2n3bmqqZxzUsZ4fxe2ho+/AYuQUz+iDKpfjLgKbg/lHcG6cGOj+L3gDrn9S2CxoRg=="; 36981 + url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.0.6.tgz"; 36982 + sha512 = "qv3sVLl4lMT96LLtR7xeRJX11OUFjsaD5oVat2/SNBIb21bJXwal2+SklcRbTwGwqWpWH/HRtYavOoJE+seL8w=="; 36713 36983 }; 36714 36984 }; 36715 36985 "markdown-it-8.4.2" = { ··· 36982 37252 sha512 = "1XjyBWqCvEFFUDW/MPv0RwbITRD4xQXOvKoPYtLDq8IdZTfdF/cQSo5Yn4qvhfSSZgjgkTFsqJD2wOUG4ovV8Q=="; 36983 37253 }; 36984 37254 }; 37255 + "match-sorter-3.1.1" = { 37256 + name = "match-sorter"; 37257 + packageName = "match-sorter"; 37258 + version = "3.1.1"; 37259 + src = fetchurl { 37260 + url = "https://registry.npmjs.org/match-sorter/-/match-sorter-3.1.1.tgz"; 37261 + sha512 = "Qlox3wRM/Q4Ww9rv1cBmYKNJwWVX/WC+eA3+1S3Fv4EOhrqyp812ZEfVFKQk0AP6RfzmPUUOwEZBbJ8IRt8SOw=="; 37262 + }; 37263 + }; 36985 37264 "matchdep-2.0.0" = { 36986 37265 name = "matchdep"; 36987 37266 packageName = "matchdep"; ··· 38881 39160 sha512 = "GpxVObyOzL0CGPBqo6B04GinN8JLk12NRYAIkYvARd9ZCoJKevvOyCaWK6bdK/kFSDj3LPDnCsJbezzNlsi87Q=="; 38882 39161 }; 38883 39162 }; 38884 - "mqtt-packet-6.9.0" = { 39163 + "mqtt-packet-6.9.1" = { 38885 39164 name = "mqtt-packet"; 38886 39165 packageName = "mqtt-packet"; 38887 - version = "6.9.0"; 39166 + version = "6.9.1"; 38888 39167 src = fetchurl { 38889 - url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.9.0.tgz"; 38890 - sha512 = "cngFSAXWSl5XHKJYUQiYQjtp75zhf1vygY00NnJdhQoXOH2v3aizmaaMIHI5n1N/TJEHSAbHryQhFr3gJ9VNvA=="; 39168 + url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.9.1.tgz"; 39169 + sha512 = "0+u0ZoRj6H6AuzNY5d8qzXzyXmFI19gkdPRA14kGfKvbqYcpOL+HWUGHjtCxHqjm8CscwsH+dX0+Rxx4se5HSA=="; 38891 39170 }; 38892 39171 }; 38893 39172 "mri-1.1.6" = { ··· 39205 39484 sha1 = "2e5cb1ac64c937dae28296e8f42af5eafd9bc7ef"; 39206 39485 }; 39207 39486 }; 39487 + "mutation-observer-1.0.3" = { 39488 + name = "mutation-observer"; 39489 + packageName = "mutation-observer"; 39490 + version = "1.0.3"; 39491 + src = fetchurl { 39492 + url = "https://registry.npmjs.org/mutation-observer/-/mutation-observer-1.0.3.tgz"; 39493 + sha512 = "M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA=="; 39494 + }; 39495 + }; 39208 39496 "mute-stdout-1.0.1" = { 39209 39497 name = "mute-stdout"; 39210 39498 packageName = "mute-stdout"; ··· 40818 41106 sha512 = "ECNgiM5IAeZNuXYu5kF4JV8t+MSFixHsvjexQtf/bLTOsL+KycDv3pod1a88N8uHtzsktYLRX6cAawg4aHeLVQ=="; 40819 41107 }; 40820 41108 }; 41109 + "normalize-url-1.9.1" = { 41110 + name = "normalize-url"; 41111 + packageName = "normalize-url"; 41112 + version = "1.9.1"; 41113 + src = fetchurl { 41114 + url = "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz"; 41115 + sha1 = "2cc0d66b31ea23036458436e3620d85954c66c3c"; 41116 + }; 41117 + }; 40821 41118 "normalize-url-2.0.1" = { 40822 41119 name = "normalize-url"; 40823 41120 packageName = "normalize-url"; ··· 41422 41719 sha512 = "VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ=="; 41423 41720 }; 41424 41721 }; 41722 + "object-inspect-1.10.2" = { 41723 + name = "object-inspect"; 41724 + packageName = "object-inspect"; 41725 + version = "1.10.2"; 41726 + src = fetchurl { 41727 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz"; 41728 + sha512 = "gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA=="; 41729 + }; 41730 + }; 41425 41731 "object-inspect-1.4.1" = { 41426 41732 name = "object-inspect"; 41427 41733 packageName = "object-inspect"; ··· 41440 41746 sha512 = "a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw=="; 41441 41747 }; 41442 41748 }; 41443 - "object-inspect-1.9.0" = { 41444 - name = "object-inspect"; 41445 - packageName = "object-inspect"; 41446 - version = "1.9.0"; 41447 - src = fetchurl { 41448 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz"; 41449 - sha512 = "i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw=="; 41450 - }; 41451 - }; 41452 41749 "object-is-1.1.5" = { 41453 41750 name = "object-is"; 41454 41751 packageName = "object-is"; ··· 41692 41989 sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ=="; 41693 41990 }; 41694 41991 }; 41695 - "office-ui-fabric-react-7.167.0" = { 41992 + "office-ui-fabric-react-7.168.0" = { 41696 41993 name = "office-ui-fabric-react"; 41697 41994 packageName = "office-ui-fabric-react"; 41698 - version = "7.167.0"; 41995 + version = "7.168.0"; 41699 41996 src = fetchurl { 41700 - url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.167.0.tgz"; 41701 - sha512 = "PDMijULVRgqrB8eBZi31Qw2rrY8rrFTm7mt6YodxUzM0NyqNUA1UJMPrBwOeV857PFK0C6kO89CwLNtcZWRobw=="; 41997 + url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.168.0.tgz"; 41998 + sha512 = "hxH6HuNEIPVwO1ahzkVTkrARbN1vGP0W0qgbNPNcQDjnux9moyLgGcp0BzWXG6mNlTKFti/6WceCwXFjLEyPkw=="; 41702 41999 }; 41703 42000 }; 41704 42001 "omggif-1.0.10" = { ··· 41944 42241 sha512 = "MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q=="; 41945 42242 }; 41946 42243 }; 41947 - "open-8.0.5" = { 42244 + "open-8.0.6" = { 41948 42245 name = "open"; 41949 42246 packageName = "open"; 41950 - version = "8.0.5"; 42247 + version = "8.0.6"; 41951 42248 src = fetchurl { 41952 - url = "https://registry.npmjs.org/open/-/open-8.0.5.tgz"; 41953 - sha512 = "hkPXCz7gijWp2GoWqsQ4O/5p7F6d5pIQ/+9NyeWG1nABJ4zvLi9kJRv1a44kVf5p13wK0WMoiRA+Xey68yOytA=="; 42249 + url = "https://registry.npmjs.org/open/-/open-8.0.6.tgz"; 42250 + sha512 = "vDOC0KwGabMPFtIpCO2QOnQeOz0N2rEkbuCuxICwLMUCrpv+A7NHrrzJ2dQReJmVluHhO4pYRh/Pn6s8t7Op6Q=="; 41954 42251 }; 41955 42252 }; 41956 42253 "openapi-default-setter-2.1.0" = { ··· 44915 45212 sha512 = "IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg=="; 44916 45213 }; 44917 45214 }; 45215 + "postcss-flexbugs-fixes-4.2.1" = { 45216 + name = "postcss-flexbugs-fixes"; 45217 + packageName = "postcss-flexbugs-fixes"; 45218 + version = "4.2.1"; 45219 + src = fetchurl { 45220 + url = "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz"; 45221 + sha512 = "9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ=="; 45222 + }; 45223 + }; 44918 45224 "postcss-html-0.12.0" = { 44919 45225 name = "postcss-html"; 44920 45226 packageName = "postcss-html"; ··· 44951 45257 sha512 = "7TvleQWNM2QLcHqvudt3VYjULVB49uiW6XzEUFmvwHzvsOEF5MwBrIXZDJQvJNFGjJQTzSzZnDoCJ8h/ljyGXA=="; 44952 45258 }; 44953 45259 }; 45260 + "postcss-load-config-2.1.2" = { 45261 + name = "postcss-load-config"; 45262 + packageName = "postcss-load-config"; 45263 + version = "2.1.2"; 45264 + src = fetchurl { 45265 + url = "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz"; 45266 + sha512 = "/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw=="; 45267 + }; 45268 + }; 44954 45269 "postcss-load-config-3.0.1" = { 44955 45270 name = "postcss-load-config"; 44956 45271 packageName = "postcss-load-config"; ··· 44960 45275 sha512 = "/pDHe30UYZUD11IeG8GWx9lNtu1ToyTsZHnyy45B4Mrwr/Kb6NgYl7k753+05CJNKnjbwh4975amoPJ+TEjHNQ=="; 44961 45276 }; 44962 45277 }; 45278 + "postcss-loader-3.0.0" = { 45279 + name = "postcss-loader"; 45280 + packageName = "postcss-loader"; 45281 + version = "3.0.0"; 45282 + src = fetchurl { 45283 + url = "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz"; 45284 + sha512 = "cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA=="; 45285 + }; 45286 + }; 44963 45287 "postcss-media-query-parser-0.2.3" = { 44964 45288 name = "postcss-media-query-parser"; 44965 45289 packageName = "postcss-media-query-parser"; ··· 45050 45374 sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069"; 45051 45375 }; 45052 45376 }; 45377 + "postcss-modules-local-by-default-2.0.6" = { 45378 + name = "postcss-modules-local-by-default"; 45379 + packageName = "postcss-modules-local-by-default"; 45380 + version = "2.0.6"; 45381 + src = fetchurl { 45382 + url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz"; 45383 + sha512 = "oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA=="; 45384 + }; 45385 + }; 45053 45386 "postcss-modules-local-by-default-3.0.3" = { 45054 45387 name = "postcss-modules-local-by-default"; 45055 45388 packageName = "postcss-modules-local-by-default"; ··· 45086 45419 sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20"; 45087 45420 }; 45088 45421 }; 45422 + "postcss-modules-values-2.0.0" = { 45423 + name = "postcss-modules-values"; 45424 + packageName = "postcss-modules-values"; 45425 + version = "2.0.0"; 45426 + src = fetchurl { 45427 + url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz"; 45428 + sha512 = "Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w=="; 45429 + }; 45430 + }; 45089 45431 "postcss-modules-values-3.0.0" = { 45090 45432 name = "postcss-modules-values"; 45091 45433 packageName = "postcss-modules-values"; ··· 47291 47633 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 47292 47634 }; 47293 47635 }; 47294 - "pyright-1.1.130" = { 47636 + "pyright-1.1.132" = { 47295 47637 name = "pyright"; 47296 47638 packageName = "pyright"; 47297 - version = "1.1.130"; 47639 + version = "1.1.132"; 47298 47640 src = fetchurl { 47299 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.130.tgz"; 47300 - sha512 = "hj4Lvn0x5LFsZDJaZ5hW5X4NfHSCoMvEqcNvRgpYM59qAM22z7XC+Tb7XNrQEhOfIjsbczS3nKWGGUMCe88LXg=="; 47641 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.132.tgz"; 47642 + sha512 = "quvG9Ip2NwKEShsLJ7eLlkQ/ST5SX84QCgO/k7gGqlCHwuifn9/v7LrzdpdFbkVnQR51egUNWwwLQRoIBT6vUA=="; 47301 47643 }; 47302 47644 }; 47303 47645 "q-0.9.7" = { ··· 47660 48002 sha1 = "0c13be0b5b49b46f76d6669248d527cf2b02fe27"; 47661 48003 }; 47662 48004 }; 48005 + "raf-3.4.1" = { 48006 + name = "raf"; 48007 + packageName = "raf"; 48008 + version = "3.4.1"; 48009 + src = fetchurl { 48010 + url = "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz"; 48011 + sha512 = "Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA=="; 48012 + }; 48013 + }; 47663 48014 "railroad-diagrams-1.0.0" = { 47664 48015 name = "railroad-diagrams"; 47665 48016 packageName = "railroad-diagrams"; ··· 47939 48290 sha512 = "9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA=="; 47940 48291 }; 47941 48292 }; 48293 + "raw-loader-3.1.0" = { 48294 + name = "raw-loader"; 48295 + packageName = "raw-loader"; 48296 + version = "3.1.0"; 48297 + src = fetchurl { 48298 + url = "https://registry.npmjs.org/raw-loader/-/raw-loader-3.1.0.tgz"; 48299 + sha512 = "lzUVMuJ06HF4rYveaz9Tv0WRlUMxJ0Y1hgSkkgg+50iEdaI0TthyEDe08KIHb0XsF6rn8WYTqPCaGTZg3sX+qA=="; 48300 + }; 48301 + }; 47942 48302 "rc-0.4.0" = { 47943 48303 name = "rc"; 47944 48304 packageName = "rc"; ··· 48029 48389 sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; 48030 48390 }; 48031 48391 }; 48032 - "react-devtools-core-4.12.1" = { 48392 + "react-devtools-core-4.12.2" = { 48033 48393 name = "react-devtools-core"; 48034 48394 packageName = "react-devtools-core"; 48035 - version = "4.12.1"; 48395 + version = "4.12.2"; 48036 48396 src = fetchurl { 48037 - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.12.1.tgz"; 48038 - sha512 = "d12z3rBMXn6+LI+tAcvTny++1sSf/MA51CHmsMGFIN211NJupPsgVDLGddNvrvZg6OL+vYznpjd5mhzdrGGg7A=="; 48397 + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.12.2.tgz"; 48398 + sha512 = "cvAiJCSIIan2A22o4j4Twc7PdDrwqiAQVBeZ+osS2T/wv2Ua3a0J8Sgx4pTH5Y7VoWn5WiGCHkAW4S1lYl3kcA=="; 48039 48399 }; 48040 48400 }; 48041 48401 "react-dom-16.14.0" = { ··· 48056 48416 sha512 = "nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew=="; 48057 48417 }; 48058 48418 }; 48419 + "react-fast-compare-3.2.0" = { 48420 + name = "react-fast-compare"; 48421 + packageName = "react-fast-compare"; 48422 + version = "3.2.0"; 48423 + src = fetchurl { 48424 + url = "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz"; 48425 + sha512 = "rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA=="; 48426 + }; 48427 + }; 48428 + "react-helmet-6.1.0" = { 48429 + name = "react-helmet"; 48430 + packageName = "react-helmet"; 48431 + version = "6.1.0"; 48432 + src = fetchurl { 48433 + url = "https://registry.npmjs.org/react-helmet/-/react-helmet-6.1.0.tgz"; 48434 + sha512 = "4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw=="; 48435 + }; 48436 + }; 48059 48437 "react-is-16.13.1" = { 48060 48438 name = "react-is"; 48061 48439 packageName = "react-is"; ··· 48063 48441 src = fetchurl { 48064 48442 url = "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"; 48065 48443 sha512 = "24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="; 48444 + }; 48445 + }; 48446 + "react-lifecycles-compat-3.0.4" = { 48447 + name = "react-lifecycles-compat"; 48448 + packageName = "react-lifecycles-compat"; 48449 + version = "3.0.4"; 48450 + src = fetchurl { 48451 + url = "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz"; 48452 + sha512 = "fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="; 48066 48453 }; 48067 48454 }; 48068 48455 "react-reconciler-0.24.0" = { ··· 48092 48479 sha512 = "X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg=="; 48093 48480 }; 48094 48481 }; 48482 + "react-side-effect-2.1.1" = { 48483 + name = "react-side-effect"; 48484 + packageName = "react-side-effect"; 48485 + version = "2.1.1"; 48486 + src = fetchurl { 48487 + url = "https://registry.npmjs.org/react-side-effect/-/react-side-effect-2.1.1.tgz"; 48488 + sha512 = "2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ=="; 48489 + }; 48490 + }; 48095 48491 "react-tabs-3.2.2" = { 48096 48492 name = "react-tabs"; 48097 48493 packageName = "react-tabs"; ··· 48099 48495 src = fetchurl { 48100 48496 url = "https://registry.npmjs.org/react-tabs/-/react-tabs-3.2.2.tgz"; 48101 48497 sha512 = "/o52eGKxFHRa+ssuTEgSM8qORnV4+k7ibW+aNQzKe+5gifeVz8nLxCrsI9xdRhfb0wCLdgIambIpb1qCxaMN+A=="; 48498 + }; 48499 + }; 48500 + "react-universal-component-4.5.0" = { 48501 + name = "react-universal-component"; 48502 + packageName = "react-universal-component"; 48503 + version = "4.5.0"; 48504 + src = fetchurl { 48505 + url = "https://registry.npmjs.org/react-universal-component/-/react-universal-component-4.5.0.tgz"; 48506 + sha512 = "dBUC6afvSAQhDcE4oh1eTmfU29W0O2eZhcGXnfGUTulXkU8ejuWqlJWXXrSMx5iV1H6LNgj2NJMj3BtBMfBNhA=="; 48102 48507 }; 48103 48508 }; 48104 48509 "read-1.0.7" = { ··· 50567 50972 sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg=="; 50568 50973 }; 50569 50974 }; 50570 - "sass-1.32.8" = { 50975 + "sass-1.32.10" = { 50571 50976 name = "sass"; 50572 50977 packageName = "sass"; 50573 - version = "1.32.8"; 50978 + version = "1.32.10"; 50574 50979 src = fetchurl { 50575 - url = "https://registry.npmjs.org/sass/-/sass-1.32.8.tgz"; 50576 - sha512 = "Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ=="; 50980 + url = "https://registry.npmjs.org/sass/-/sass-1.32.10.tgz"; 50981 + sha512 = "Nx0pcWoonAkn7CRp0aE/hket1UP97GiR1IFw3kcjV3pnenhWgZEWUf0ZcfPOV2fK52fnOcK3JdC/YYZ9E47DTQ=="; 50577 50982 }; 50578 50983 }; 50579 50984 "sax-0.5.8" = { ··· 50738 51143 sha512 = "sDtmZDpibGH2ixj3FOmsC3Z/b08eaB2/KAvy2oSp4qvcGdhatBSfb1RdVpwjQl5c3J83WbBo1HSZ7DBtMu43lA=="; 50739 51144 }; 50740 51145 }; 50741 - "secret-stack-6.3.2" = { 51146 + "secret-stack-6.4.0" = { 50742 51147 name = "secret-stack"; 50743 51148 packageName = "secret-stack"; 50744 - version = "6.3.2"; 51149 + version = "6.4.0"; 50745 51150 src = fetchurl { 50746 - url = "https://registry.npmjs.org/secret-stack/-/secret-stack-6.3.2.tgz"; 50747 - sha512 = "D46+4LWwsM1LnO4dg6FM/MfGmMk9uYsIcDElqyNeImBnyUueKi2xz10CHF9iSAtSUGReQDV4SCVUiVrPnaKnsA=="; 51151 + url = "https://registry.npmjs.org/secret-stack/-/secret-stack-6.4.0.tgz"; 51152 + sha512 = "Vnc2bItbjMw5WUtQtxLL4Atl17KaUHdLdxIb3a89CQTAo/1G1YjmiNe2GAAgZHSBi6UYRoB/oRmuJz8HLZmnmA=="; 50748 51153 }; 50749 51154 }; 50750 51155 "secure-compare-3.0.1" = { ··· 51152 51557 sha512 = "F+NGU0UHMBO4Q965tjw7rvieNVjlH6Lqi2emq/Lc9LUURYJbiCzmpi4Cy1OOjjVPtxu0c+NE85LU6968Wko5ZA=="; 51153 51558 }; 51154 51559 }; 51560 + "serve-11.3.2" = { 51561 + name = "serve"; 51562 + packageName = "serve"; 51563 + version = "11.3.2"; 51564 + src = fetchurl { 51565 + url = "https://registry.npmjs.org/serve/-/serve-11.3.2.tgz"; 51566 + sha512 = "yKWQfI3xbj/f7X1lTBg91fXBP0FqjJ4TEi+ilES5yzH0iKJpN5LjNb1YzIfQg9Rqn4ECUS2SOf2+Kmepogoa5w=="; 51567 + }; 51568 + }; 51155 51569 "serve-favicon-2.5.0" = { 51156 51570 name = "serve-favicon"; 51157 51571 packageName = "serve-favicon"; ··· 51483 51897 src = fetchurl { 51484 51898 url = "https://registry.npmjs.org/shimmer/-/shimmer-1.2.1.tgz"; 51485 51899 sha512 = "sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw=="; 51900 + }; 51901 + }; 51902 + "shorthash-0.0.2" = { 51903 + name = "shorthash"; 51904 + packageName = "shorthash"; 51905 + version = "0.0.2"; 51906 + src = fetchurl { 51907 + url = "https://registry.npmjs.org/shorthash/-/shorthash-0.0.2.tgz"; 51908 + sha1 = "59b268eecbde59038b30da202bcfbddeb2c4a4eb"; 51486 51909 }; 51487 51910 }; 51488 51911 "shortid-2.2.16" = { ··· 52475 52898 sha512 = "VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ=="; 52476 52899 }; 52477 52900 }; 52478 - "socks-2.6.0" = { 52901 + "socks-2.6.1" = { 52479 52902 name = "socks"; 52480 52903 packageName = "socks"; 52481 - version = "2.6.0"; 52904 + version = "2.6.1"; 52482 52905 src = fetchurl { 52483 - url = "https://registry.npmjs.org/socks/-/socks-2.6.0.tgz"; 52484 - sha512 = "mNmr9owlinMplev0Wd7UHFlqI4ofnBnNzFuzrm63PPaHgbkqCFe4T5LzwKmtQ/f2tX0NTpcdVLyD/FHxFBstYw=="; 52906 + url = "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz"; 52907 + sha512 = "kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA=="; 52485 52908 }; 52486 52909 }; 52487 52910 "socks-proxy-agent-5.0.0" = { ··· 54842 55265 sha1 = "dd802425e0f53dc4a6e7aca3752901a1ccda7af5"; 54843 55266 }; 54844 55267 }; 55268 + "style-loader-0.23.1" = { 55269 + name = "style-loader"; 55270 + packageName = "style-loader"; 55271 + version = "0.23.1"; 55272 + src = fetchurl { 55273 + url = "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz"; 55274 + sha512 = "XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg=="; 55275 + }; 55276 + }; 54845 55277 "style-loader-1.2.1" = { 54846 55278 name = "style-loader"; 54847 55279 packageName = "style-loader"; ··· 55382 55814 sha1 = "368ffc0e96bd84226ed1b9b33d66be57da04f09a"; 55383 55815 }; 55384 55816 }; 55817 + "swimmer-1.4.0" = { 55818 + name = "swimmer"; 55819 + packageName = "swimmer"; 55820 + version = "1.4.0"; 55821 + src = fetchurl { 55822 + url = "https://registry.npmjs.org/swimmer/-/swimmer-1.4.0.tgz"; 55823 + sha512 = "r6e+3pUnXgHQnzEN0tcIGmaTs76HbZEoM9NSdmAoNqSS4BPyoUFYeQtyGUm56SXoe62LS6BIrXc8q9yp9TuZgQ=="; 55824 + }; 55825 + }; 55385 55826 "switchback-1.1.3" = { 55386 55827 name = "switchback"; 55387 55828 packageName = "switchback"; ··· 56967 57408 sha512 = "605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw=="; 56968 57409 }; 56969 57410 }; 57411 + "toposort-1.0.7" = { 57412 + name = "toposort"; 57413 + packageName = "toposort"; 57414 + version = "1.0.7"; 57415 + src = fetchurl { 57416 + url = "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz"; 57417 + sha1 = "2e68442d9f64ec720b8cc89e6443ac6caa950029"; 57418 + }; 57419 + }; 56970 57420 "toposort-2.0.2" = { 56971 57421 name = "toposort"; 56972 57422 packageName = "toposort"; ··· 57325 57775 src = fetchurl { 57326 57776 url = "https://registry.npmjs.org/try-to-catch/-/try-to-catch-1.1.1.tgz"; 57327 57777 sha512 = "ikUlS+/BcImLhNYyIgZcEmq4byc31QpC+46/6Jm5ECWkVFhf8SM2Fp/0pMVXPX6vk45SMCwrP4Taxucne8I0VA=="; 57778 + }; 57779 + }; 57780 + "tryer-1.0.1" = { 57781 + name = "tryer"; 57782 + packageName = "tryer"; 57783 + version = "1.0.1"; 57784 + src = fetchurl { 57785 + url = "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz"; 57786 + sha512 = "c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA=="; 57328 57787 }; 57329 57788 }; 57330 57789 "ts-invariant-0.4.4" = { ··· 59262 59721 sha512 = "jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA=="; 59263 59722 }; 59264 59723 }; 59724 + "url-loader-2.3.0" = { 59725 + name = "url-loader"; 59726 + packageName = "url-loader"; 59727 + version = "2.3.0"; 59728 + src = fetchurl { 59729 + url = "https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz"; 59730 + sha512 = "goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog=="; 59731 + }; 59732 + }; 59265 59733 "url-loader-4.1.1" = { 59266 59734 name = "url-loader"; 59267 59735 packageName = "url-loader"; ··· 61189 61657 sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4"; 61190 61658 }; 61191 61659 }; 61660 + "warning-4.0.3" = { 61661 + name = "warning"; 61662 + packageName = "warning"; 61663 + version = "4.0.3"; 61664 + src = fetchurl { 61665 + url = "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz"; 61666 + sha512 = "rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w=="; 61667 + }; 61668 + }; 61192 61669 "watch-1.0.2" = { 61193 61670 name = "watch"; 61194 61671 packageName = "watch"; ··· 61387 61864 sha512 = "1xllYVmA4dIvRjHzwELgW4KjIU1fW4PEuEnjsylz7k7H5HgPOctIq7W1jrt3sKH9yG5d72//XWzsHhfoWvsQVg=="; 61388 61865 }; 61389 61866 }; 61867 + "webpack-bundle-analyzer-3.9.0" = { 61868 + name = "webpack-bundle-analyzer"; 61869 + packageName = "webpack-bundle-analyzer"; 61870 + version = "3.9.0"; 61871 + src = fetchurl { 61872 + url = "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz"; 61873 + sha512 = "Ob8amZfCm3rMB1ScjQVlbYYUEJyEjdEtQ92jqiFUYt5VkEeO2v5UMbv49P/gnmCZm3A6yaFQzCBvpZqN4MUsdA=="; 61874 + }; 61875 + }; 61390 61876 "webpack-cli-3.3.12" = { 61391 61877 name = "webpack-cli"; 61392 61878 packageName = "webpack-cli"; ··· 61432 61918 sha512 = "PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg=="; 61433 61919 }; 61434 61920 }; 61921 + "webpack-dev-server-3.11.2" = { 61922 + name = "webpack-dev-server"; 61923 + packageName = "webpack-dev-server"; 61924 + version = "3.11.2"; 61925 + src = fetchurl { 61926 + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz"; 61927 + sha512 = "A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ=="; 61928 + }; 61929 + }; 61930 + "webpack-flush-chunks-2.0.3" = { 61931 + name = "webpack-flush-chunks"; 61932 + packageName = "webpack-flush-chunks"; 61933 + version = "2.0.3"; 61934 + src = fetchurl { 61935 + url = "https://registry.npmjs.org/webpack-flush-chunks/-/webpack-flush-chunks-2.0.3.tgz"; 61936 + sha512 = "CXGOyXG5YjjxyI+Qyt3VlI//JX92UmGRNP65zN3o9CIntEzfzc1J30YTKRRvF1JsE/iEzbnp5u99yCkL9obotQ=="; 61937 + }; 61938 + }; 61435 61939 "webpack-log-2.0.0" = { 61436 61940 name = "webpack-log"; 61437 61941 packageName = "webpack-log"; ··· 61457 61961 src = fetchurl { 61458 61962 url = "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz"; 61459 61963 sha512 = "6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA=="; 61964 + }; 61965 + }; 61966 + "webpack-node-externals-1.7.2" = { 61967 + name = "webpack-node-externals"; 61968 + packageName = "webpack-node-externals"; 61969 + version = "1.7.2"; 61970 + src = fetchurl { 61971 + url = "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-1.7.2.tgz"; 61972 + sha512 = "ajerHZ+BJKeCLviLUUmnyd5B4RavLF76uv3cs6KNuO8W+HuQaEs0y0L7o40NQxdPy5w0pcv8Ew7yPUAQG0UdCg=="; 61460 61973 }; 61461 61974 }; 61462 61975 "webpack-node-externals-2.5.2" = { ··· 62458 62971 sha512 = "Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw=="; 62459 62972 }; 62460 62973 }; 62974 + "ws-7.4.5" = { 62975 + name = "ws"; 62976 + packageName = "ws"; 62977 + version = "7.4.5"; 62978 + src = fetchurl { 62979 + url = "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz"; 62980 + sha512 = "xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g=="; 62981 + }; 62982 + }; 62461 62983 "x-default-browser-0.3.1" = { 62462 62984 name = "x-default-browser"; 62463 62985 packageName = "x-default-browser"; ··· 62936 63458 sha512 = "3MgPdaXV8rfQ/pNn16Eio6VXYPTkqwa0vc7GkiymmY/DqR1SE/7VPAAVZz1GJsJFrllMYO3RHfEaiUGjab6TNw=="; 62937 63459 }; 62938 63460 }; 62939 - "xstate-4.17.1" = { 63461 + "xstate-4.18.0" = { 62940 63462 name = "xstate"; 62941 63463 packageName = "xstate"; 62942 - version = "4.17.1"; 63464 + version = "4.18.0"; 62943 63465 src = fetchurl { 62944 - url = "https://registry.npmjs.org/xstate/-/xstate-4.17.1.tgz"; 62945 - sha512 = "3q7so9qAKFnz9/t7BNQXQtV+9fwDATCOkC+0tAvVqczboEbu6gz2dvPPVCCkj55Hyzgro9aSOntGSPGLei82BA=="; 63466 + url = "https://registry.npmjs.org/xstate/-/xstate-4.18.0.tgz"; 63467 + sha512 = "cjj22XXxTWIkMrghyoUWjUlDFcd7MQGeKYy8bkdtcIeogZjF98mep9CHv8xLO3j4PZQF5qgcAGGT8FUn99mF1Q=="; 62946 63468 }; 62947 63469 }; 62948 63470 "xstream-11.14.0" = { ··· 63539 64061 sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg=="; 63540 64062 }; 63541 64063 }; 63542 - "zeromq-5.2.4" = { 64064 + "zeromq-5.2.7" = { 63543 64065 name = "zeromq"; 63544 64066 packageName = "zeromq"; 63545 - version = "5.2.4"; 64067 + version = "5.2.7"; 63546 64068 src = fetchurl { 63547 - url = "https://registry.npmjs.org/zeromq/-/zeromq-5.2.4.tgz"; 63548 - sha512 = "aRTlXSBiuCMiLnLliY0YT8hdJCjKwZ+rYCeacjvlCeBK8WD+EsLr8v3fnj6nIk5LbYFdgX8uFFWu/sw3+ED65g=="; 64069 + url = "https://registry.npmjs.org/zeromq/-/zeromq-5.2.7.tgz"; 64070 + sha512 = "z0R3qtmy4SFgYa/oDjxWFAAGjQb0IU1sJ0XVLflp3W72f2ALXHJzKPgcyCdgMQZTnvSULpZP2HbIYdemLtbBiQ=="; 63549 64071 }; 63550 64072 }; 63551 64073 "zerr-1.0.4" = { ··· 63865 64387 sources."set-blocking-2.0.0" 63866 64388 sources."signal-exit-3.0.3" 63867 64389 sources."smart-buffer-4.1.0" 63868 - sources."socks-2.6.0" 64390 + sources."socks-2.6.1" 63869 64391 sources."socks-proxy-agent-5.0.0" 63870 64392 sources."source-map-0.7.3" 63871 64393 sources."sourcemap-codec-1.4.8" ··· 64520 65042 sources."buffer-5.7.1" 64521 65043 sources."buffer-from-1.1.1" 64522 65044 sources."callsites-3.1.0" 64523 - sources."caniuse-lite-1.0.30001208" 65045 + sources."caniuse-lite-1.0.30001209" 64524 65046 sources."chalk-3.0.0" 64525 65047 sources."chardet-0.7.0" 64526 65048 sources."chokidar-3.5.1" ··· 65087 65609 sources."call-bind-1.0.2" 65088 65610 sources."call-me-maybe-1.0.1" 65089 65611 sources."camelcase-5.3.1" 65090 - sources."caniuse-lite-1.0.30001208" 65612 + sources."caniuse-lite-1.0.30001209" 65091 65613 sources."caseless-0.12.0" 65092 65614 sources."caw-2.0.1" 65093 65615 sources."chalk-2.4.2" ··· 65579 66101 sources."kind-of-3.2.2" 65580 66102 ]; 65581 66103 }) 65582 - sources."object-inspect-1.9.0" 66104 + sources."object-inspect-1.10.2" 65583 66105 sources."object-keys-1.1.1" 65584 66106 sources."object-path-0.11.5" 65585 66107 sources."object-visit-1.0.1" ··· 66232 66754 sources."balanced-match-1.0.2" 66233 66755 sources."brace-expansion-1.1.11" 66234 66756 sources."browserslist-4.16.4" 66235 - sources."caniuse-lite-1.0.30001208" 66757 + sources."caniuse-lite-1.0.30001209" 66236 66758 sources."chalk-2.4.2" 66237 66759 sources."color-convert-1.9.3" 66238 66760 sources."color-name-1.1.3" ··· 66425 66947 sources."devtools-protocol-0.0.854822" 66426 66948 sources."dom-serializer-1.2.0" 66427 66949 sources."domelementtype-2.2.0" 66428 - sources."domhandler-4.1.0" 66429 - sources."domutils-2.5.2" 66950 + sources."domhandler-4.2.0" 66951 + sources."domutils-2.6.0" 66430 66952 sources."emoji-regex-8.0.0" 66431 66953 sources."end-of-stream-1.4.4" 66432 66954 sources."entities-2.1.0" ··· 66519 67041 sources."setprototypeof-1.1.1" 66520 67042 sources."signal-exit-3.0.3" 66521 67043 sources."smart-buffer-4.1.0" 66522 - sources."socks-2.6.0" 67044 + sources."socks-2.6.1" 66523 67045 sources."socks-proxy-agent-5.0.0" 66524 67046 sources."source-map-0.6.1" 66525 67047 sources."statuses-1.5.0" ··· 66552 67074 sources."uuid-8.3.2" 66553 67075 sources."word-wrap-1.2.3" 66554 67076 sources."wrappy-1.0.2" 66555 - sources."ws-7.4.4" 67077 + sources."ws-7.4.5" 66556 67078 sources."xml2js-0.4.19" 66557 67079 sources."xmlbuilder-9.0.7" 66558 67080 sources."xregexp-2.0.0" ··· 67716 68238 sources."mkdirp-classic-0.5.3" 67717 68239 sources."module-deps-6.2.3" 67718 68240 sources."object-assign-4.1.1" 67719 - sources."object-inspect-1.9.0" 68241 + sources."object-inspect-1.10.2" 67720 68242 sources."object-keys-1.1.1" 67721 68243 sources."object.assign-4.1.2" 67722 68244 sources."once-1.4.0" ··· 68048 68570 sources."lodash-4.17.21" 68049 68571 sources."lru-cache-6.0.0" 68050 68572 sources."map-obj-4.2.1" 68051 - (sources."markdown-it-12.0.5" // { 68573 + (sources."markdown-it-12.0.6" // { 68052 68574 dependencies = [ 68053 68575 sources."argparse-2.0.1" 68054 68576 sources."entities-2.1.0" ··· 68801 69323 sources."ms-2.1.2" 68802 69324 sources."ncp-2.0.0" 68803 69325 sources."no-case-3.0.4" 68804 - sources."object-inspect-1.9.0" 69326 + sources."object-inspect-1.10.2" 68805 69327 sources."object-is-1.1.5" 68806 69328 sources."object-keys-1.1.1" 68807 69329 sources."object.assign-4.1.2" ··· 69093 69615 sources."node-fetch-2.6.1" 69094 69616 sources."normalize-path-3.0.0" 69095 69617 sources."object-assign-4.1.1" 69096 - sources."object-inspect-1.9.0" 69618 + sources."object-inspect-1.10.2" 69097 69619 sources."object-is-1.1.5" 69098 69620 sources."object-keys-1.1.1" 69099 69621 sources."object.assign-4.1.2" ··· 69112 69634 sources."prop-types-15.7.2" 69113 69635 sources."quick-lru-4.0.1" 69114 69636 sources."react-16.14.0" 69115 - sources."react-devtools-core-4.12.1" 69637 + sources."react-devtools-core-4.12.2" 69116 69638 sources."react-is-16.13.1" 69117 69639 sources."react-reconciler-0.24.0" 69118 69640 sources."readable-stream-3.6.0" ··· 69177 69699 sources."widest-line-3.1.0" 69178 69700 sources."wrap-ansi-6.2.0" 69179 69701 sources."wrappy-1.0.2" 69180 - sources."ws-7.4.4" 69702 + sources."ws-7.4.5" 69181 69703 sources."xmlbuilder-15.1.1" 69182 69704 sources."xmldom-0.5.0" 69183 69705 sources."y18n-5.0.8" ··· 69485 70007 sources."npm-run-path-3.1.0" 69486 70008 sources."once-1.4.0" 69487 70009 sources."onetime-5.1.2" 69488 - sources."open-8.0.5" 70010 + sources."open-8.0.6" 69489 70011 sources."os-homedir-1.0.2" 69490 70012 sources."p-finally-2.0.1" 69491 70013 sources."p-map-4.0.0" ··· 69832 70354 sources."node-fetch-2.6.1" 69833 70355 sources."node-int64-0.4.0" 69834 70356 sources."npm-run-path-2.0.2" 69835 - sources."object-inspect-1.9.0" 70357 + sources."object-inspect-1.10.2" 69836 70358 sources."object-keys-1.1.1" 69837 70359 sources."object.assign-4.1.2" 69838 70360 sources."once-1.4.0" ··· 70004 70526 sources."callsites-3.1.0" 70005 70527 sources."camelcase-2.1.1" 70006 70528 sources."camelcase-keys-2.1.0" 70007 - sources."caniuse-lite-1.0.30001208" 70529 + sources."caniuse-lite-1.0.30001209" 70008 70530 sources."capture-stack-trace-1.0.1" 70009 70531 sources."ccount-1.1.0" 70010 70532 (sources."chalk-4.1.0" // { ··· 70908 71430 sha512 = "XlybP7uY9BgkeGKCFhIxnmpos3rYJ8wIB+MW4w0Fyu51Ap2fxamU7FDmOcOIbjmp1tglldSZm2+A+KloHDuUgw=="; 70909 71431 }; 70910 71432 dependencies = [ 70911 - sources."pyright-1.1.130" 71433 + sources."pyright-1.1.132" 70912 71434 ]; 70913 71435 buildInputs = globalBuildInputs; 70914 71436 meta = { ··· 71110 71632 sources."callsites-3.1.0" 71111 71633 sources."camelcase-5.3.1" 71112 71634 sources."camelcase-keys-6.2.2" 71113 - sources."caniuse-lite-1.0.30001208" 71635 + sources."caniuse-lite-1.0.30001209" 71114 71636 (sources."chalk-4.1.0" // { 71115 71637 dependencies = [ 71116 71638 sources."ansi-styles-4.3.0" ··· 72521 73043 sources."signal-exit-3.0.3" 72522 73044 sources."slash-3.0.0" 72523 73045 sources."smart-buffer-4.1.0" 72524 - sources."socks-2.6.0" 73046 + sources."socks-2.6.1" 72525 73047 sources."socks-proxy-agent-5.0.0" 72526 73048 sources."spdx-correct-3.1.1" 72527 73049 sources."spdx-exceptions-2.3.0" ··· 73091 73613 sources."mute-stream-0.0.7" 73092 73614 sources."next-tick-1.0.0" 73093 73615 sources."object-assign-4.1.1" 73094 - sources."object-inspect-1.9.0" 73616 + sources."object-inspect-1.10.2" 73095 73617 sources."object-keys-1.1.1" 73096 73618 sources."onetime-2.0.1" 73097 73619 sources."os-tmpdir-1.0.2" ··· 74104 74626 elasticdump = nodeEnv.buildNodePackage { 74105 74627 name = "elasticdump"; 74106 74628 packageName = "elasticdump"; 74107 - version = "6.68.0"; 74629 + version = "6.68.1"; 74108 74630 src = fetchurl { 74109 - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.68.0.tgz"; 74110 - sha512 = "TbyxmvjB/wAuZfeXQIfFSn5LVE/SarcYSflAfL1tWnh4Az3OXGe4U5FoB/HRM8G3JTc2gp3oe1akrRpfda9+NQ=="; 74631 + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.68.1.tgz"; 74632 + sha512 = "OGsAZGrhHIJw4koiMJ1U80eVJIcpKsN6u7Iq+d1Tu3TJvBSvYHShM3SllYbsbFzIdt8kBNj3XWsogajUpeX0+w=="; 74111 74633 }; 74112 74634 dependencies = [ 74113 74635 sources."@fast-csv/format-4.3.5" ··· 74959 75481 sources."quick-lru-4.0.1" 74960 75482 ]; 74961 75483 }) 74962 - sources."caniuse-lite-1.0.30001208" 75484 + sources."caniuse-lite-1.0.30001209" 74963 75485 sources."chalk-2.4.2" 74964 75486 sources."ci-info-2.0.0" 74965 75487 sources."cli-boxes-2.2.1" ··· 75130 75652 sources."punycode-2.1.1" 75131 75653 sources."quick-lru-5.1.1" 75132 75654 sources."react-16.14.0" 75133 - sources."react-devtools-core-4.12.1" 75655 + sources."react-devtools-core-4.12.2" 75134 75656 sources."react-is-16.13.1" 75135 75657 sources."react-reconciler-0.24.0" 75136 75658 (sources."read-pkg-5.2.0" // { ··· 75207 75729 ]; 75208 75730 }) 75209 75731 sources."wrappy-1.0.2" 75210 - sources."ws-7.4.4" 75732 + sources."ws-7.4.5" 75211 75733 sources."yallist-4.0.0" 75212 75734 sources."yargs-parser-18.1.3" 75213 75735 sources."yoga-layout-prebuilt-1.10.0" ··· 75257 75779 sources."@fluentui/date-time-utilities-7.9.1" 75258 75780 sources."@fluentui/dom-utilities-1.1.2" 75259 75781 sources."@fluentui/keyboard-key-0.2.16" 75260 - sources."@fluentui/react-7.167.0" 75782 + sources."@fluentui/react-7.168.0" 75261 75783 sources."@fluentui/react-focus-7.17.6" 75262 75784 sources."@fluentui/react-window-provider-1.0.2" 75263 75785 sources."@fluentui/theme-1.7.4" ··· 76298 76820 sources."object.map-1.0.1" 76299 76821 sources."object.pick-1.3.0" 76300 76822 sources."object.reduce-1.0.1" 76301 - sources."office-ui-fabric-react-7.167.0" 76823 + sources."office-ui-fabric-react-7.168.0" 76302 76824 sources."on-finished-2.3.0" 76303 76825 sources."on-headers-1.0.2" 76304 76826 sources."once-1.4.0" ··· 76525 77047 sources."safe-buffer-5.1.2" 76526 77048 sources."safe-regex-1.1.0" 76527 77049 sources."safer-buffer-2.1.2" 76528 - sources."sass-1.32.8" 77050 + (sources."sass-1.32.10" // { 77051 + dependencies = [ 77052 + sources."anymatch-3.1.2" 77053 + sources."binary-extensions-2.2.0" 77054 + sources."chokidar-3.5.1" 77055 + sources."fsevents-2.3.2" 77056 + sources."is-binary-path-2.1.0" 77057 + sources."readdirp-3.5.0" 77058 + ]; 77059 + }) 76529 77060 sources."sax-1.2.4" 76530 77061 sources."scheduler-0.19.1" 76531 77062 sources."schema-utils-2.7.1" ··· 76886 77417 ]; 76887 77418 }) 76888 77419 sources."wrappy-1.0.2" 76889 - sources."ws-7.4.4" 77420 + sources."ws-7.4.5" 76890 77421 sources."xmlhttprequest-ssl-1.5.5" 76891 77422 sources."xtend-4.0.2" 76892 77423 sources."y18n-3.2.2" ··· 76914 77445 escape-string-regexp = nodeEnv.buildNodePackage { 76915 77446 name = "escape-string-regexp"; 76916 77447 packageName = "escape-string-regexp"; 76917 - version = "4.0.0"; 77448 + version = "5.0.0"; 76918 77449 src = fetchurl { 76919 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 76920 - sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 77450 + url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz"; 77451 + sha512 = "/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw=="; 76921 77452 }; 76922 77453 buildInputs = globalBuildInputs; 76923 77454 meta = { ··· 77522 78053 }) 77523 78054 sources."@hapi/address-4.1.0" 77524 78055 sources."@hapi/formula-2.0.0" 77525 - sources."@hapi/hoek-9.1.1" 78056 + sources."@hapi/hoek-9.2.0" 77526 78057 sources."@hapi/joi-17.1.1" 77527 78058 sources."@hapi/pinpoint-2.0.0" 77528 78059 sources."@hapi/topo-5.0.0" ··· 77857 78388 }) 77858 78389 sources."camelcase-5.3.1" 77859 78390 sources."caniuse-api-3.0.0" 77860 - sources."caniuse-lite-1.0.30001208" 78391 + sources."caniuse-lite-1.0.30001209" 77861 78392 sources."caseless-0.12.0" 77862 78393 (sources."chalk-4.1.0" // { 77863 78394 dependencies = [ ··· 78106 78637 sources."dom-converter-0.2.0" 78107 78638 (sources."dom-serializer-1.3.1" // { 78108 78639 dependencies = [ 78109 - sources."domhandler-4.1.0" 78640 + sources."domhandler-4.2.0" 78110 78641 ]; 78111 78642 }) 78112 78643 sources."dom-walk-0.1.2" ··· 78114 78645 sources."domelementtype-2.2.0" 78115 78646 sources."domhandler-3.3.0" 78116 78647 sources."domino-2.1.6" 78117 - (sources."domutils-2.5.2" // { 78648 + (sources."domutils-2.6.0" // { 78118 78649 dependencies = [ 78119 - sources."domhandler-4.1.0" 78650 + sources."domhandler-4.2.0" 78120 78651 ]; 78121 78652 }) 78122 78653 (sources."dot-case-3.0.4" // { ··· 78794 79325 sources."kind-of-3.2.2" 78795 79326 ]; 78796 79327 }) 78797 - sources."object-inspect-1.9.0" 79328 + sources."object-inspect-1.10.2" 78798 79329 sources."object-is-1.1.5" 78799 79330 sources."object-keys-1.1.1" 78800 79331 sources."object-visit-1.0.1" ··· 79326 79857 sources."faye-websocket-0.11.3" 79327 79858 ]; 79328 79859 }) 79329 - sources."socks-2.6.0" 79860 + sources."socks-2.6.1" 79330 79861 sources."socks-proxy-agent-5.0.0" 79331 79862 sources."source-list-map-2.0.1" 79332 79863 sources."source-map-0.5.7" ··· 80875 81406 sources."fecha-4.2.1" 80876 81407 sources."figures-2.0.0" 80877 81408 sources."file-uri-to-path-2.0.0" 80878 - sources."filesize-6.2.2" 81409 + sources."filesize-6.2.5" 80879 81410 sources."fill-range-7.0.1" 80880 81411 (sources."finalhandler-1.1.2" // { 80881 81412 dependencies = [ ··· 81248 81779 sources."signal-exit-3.0.3" 81249 81780 sources."simple-swizzle-0.2.2" 81250 81781 sources."smart-buffer-4.1.0" 81251 - sources."socks-2.6.0" 81782 + sources."socks-2.6.1" 81252 81783 sources."socks-proxy-agent-5.0.0" 81253 81784 sources."source-map-0.6.1" 81254 81785 sources."sprintf-js-1.0.3" ··· 81392 81923 sources."word-wrap-1.2.3" 81393 81924 sources."wrappy-1.0.2" 81394 81925 sources."write-file-atomic-3.0.3" 81395 - sources."ws-7.4.4" 81926 + sources."ws-7.4.5" 81396 81927 sources."xdg-basedir-4.0.0" 81397 81928 sources."xregexp-2.0.0" 81398 81929 sources."xtend-4.0.2" ··· 82392 82923 sources."@mdx-js/util-2.0.0-next.8" 82393 82924 (sources."@sideway/address-4.1.1" // { 82394 82925 dependencies = [ 82395 - sources."@hapi/hoek-9.1.1" 82926 + sources."@hapi/hoek-9.2.0" 82396 82927 ]; 82397 82928 }) 82398 82929 sources."@sideway/formula-3.0.0" ··· 82476 83007 sources."call-bind-1.0.2" 82477 83008 sources."camel-case-4.1.2" 82478 83009 sources."camelcase-5.3.1" 82479 - sources."caniuse-lite-1.0.30001208" 83010 + sources."caniuse-lite-1.0.30001209" 82480 83011 sources."ccount-1.1.0" 82481 83012 (sources."chalk-4.1.0" // { 82482 83013 dependencies = [ ··· 82762 83293 sources."jest-get-type-25.2.6" 82763 83294 (sources."joi-17.4.0" // { 82764 83295 dependencies = [ 82765 - sources."@hapi/hoek-9.1.1" 83296 + sources."@hapi/hoek-9.2.0" 82766 83297 sources."@hapi/topo-5.0.0" 82767 83298 ]; 82768 83299 }) ··· 82833 83364 sources."npm-run-path-2.0.2" 82834 83365 sources."nth-check-1.0.2" 82835 83366 sources."object-assign-4.1.1" 82836 - sources."object-inspect-1.9.0" 83367 + sources."object-inspect-1.10.2" 82837 83368 sources."object-path-0.11.5" 82838 83369 sources."on-finished-2.3.0" 82839 83370 sources."once-1.4.0" ··· 83058 83589 }) 83059 83590 sources."wrappy-1.0.2" 83060 83591 sources."write-file-atomic-3.0.3" 83061 - sources."ws-7.4.4" 83592 + sources."ws-7.4.5" 83062 83593 sources."xdg-basedir-4.0.0" 83063 - sources."xstate-4.17.1" 83594 + sources."xstate-4.18.0" 83064 83595 sources."xtend-4.0.2" 83065 83596 sources."y18n-4.0.3" 83066 83597 sources."yallist-4.0.0" ··· 83269 83800 sources."separator-escape-0.0.1" 83270 83801 sources."sha.js-2.4.5" 83271 83802 sources."smart-buffer-4.1.0" 83272 - sources."socks-2.6.0" 83803 + sources."socks-2.6.1" 83273 83804 sources."sodium-browserify-1.3.0" 83274 83805 (sources."sodium-browserify-tweetnacl-0.2.6" // { 83275 83806 dependencies = [ ··· 83708 84239 ]; 83709 84240 }) 83710 84241 sources."@graphql-tools/load-6.2.4" 83711 - (sources."@graphql-tools/merge-6.2.12" // { 84242 + (sources."@graphql-tools/merge-6.2.13" // { 83712 84243 dependencies = [ 83713 84244 sources."@graphql-tools/utils-7.7.3" 83714 84245 sources."tslib-2.2.0" ··· 84061 84592 sources."oas-schema-walker-1.1.5" 84062 84593 sources."oas-validator-5.0.5" 84063 84594 sources."oauth-sign-0.9.0" 84064 - sources."object-inspect-1.9.0" 84595 + sources."object-inspect-1.10.2" 84065 84596 sources."object-is-1.1.5" 84066 84597 sources."object-keys-1.1.1" 84067 84598 sources."object-path-0.11.5" ··· 85549 86080 sources."minimist-1.2.5" 85550 86081 sources."mkdirp-0.5.5" 85551 86082 sources."ms-2.1.3" 85552 - sources."object-inspect-1.9.0" 86083 + sources."object-inspect-1.10.2" 85553 86084 sources."opener-1.5.2" 85554 86085 sources."portfinder-1.0.28" 85555 86086 sources."qs-6.10.1" ··· 85740 86271 sha512 = "MIV3R9d2o9uucTmNH5IU5bvXcevljsOrsH7Sv3rmf/uoXjl/iXb8hx4ZnymBpdt48f7U2m0iKmpWlQzxjthtjw=="; 85741 86272 }; 85742 86273 dependencies = [ 85743 - sources."ansi-regex-2.1.1" 85744 - sources."aproba-1.2.0" 85745 - sources."are-we-there-yet-1.1.5" 85746 - sources."base64-js-1.5.1" 85747 - (sources."bl-4.1.0" // { 85748 - dependencies = [ 85749 - sources."readable-stream-3.6.0" 85750 - ]; 85751 - }) 85752 - sources."buffer-5.7.1" 85753 - sources."chownr-1.1.4" 85754 - sources."code-point-at-1.1.0" 85755 - sources."console-control-strings-1.1.0" 85756 - sources."core-util-is-1.0.2" 85757 - sources."decompress-response-4.2.1" 85758 - sources."deep-extend-0.6.0" 85759 - sources."delegates-1.0.0" 85760 - sources."detect-libc-1.0.3" 85761 - sources."end-of-stream-1.4.4" 85762 - sources."expand-template-2.0.3" 85763 - sources."fs-constants-1.0.0" 85764 - sources."gauge-2.7.4" 85765 - sources."github-from-package-0.0.0" 85766 - sources."has-unicode-2.0.1" 85767 - sources."ieee754-1.2.1" 85768 - sources."inherits-2.0.4" 85769 - sources."ini-1.3.8" 85770 - sources."is-fullwidth-code-point-1.0.0" 85771 - sources."isarray-1.0.0" 85772 86274 sources."jmp-2.0.0" 85773 86275 sources."jp-kernel-2.0.0" 85774 - sources."mimic-response-2.1.0" 85775 - sources."minimist-1.2.5" 85776 - sources."mkdirp-classic-0.5.3" 85777 86276 sources."nan-2.14.2" 85778 - sources."napi-build-utils-1.0.2" 85779 86277 sources."nel-1.2.0" 85780 - sources."node-abi-2.21.0" 85781 - sources."noop-logger-0.1.1" 85782 - sources."npmlog-4.1.2" 85783 - sources."number-is-nan-1.0.1" 85784 - sources."object-assign-4.1.1" 85785 - sources."once-1.4.0" 85786 - sources."prebuild-install-6.1.1" 85787 - sources."process-nextick-args-2.0.1" 85788 - sources."pump-3.0.0" 85789 - sources."rc-1.2.8" 85790 - sources."readable-stream-2.3.7" 85791 - sources."safe-buffer-5.1.2" 85792 - sources."semver-5.7.1" 85793 - sources."set-blocking-2.0.0" 85794 - sources."signal-exit-3.0.3" 85795 - sources."simple-concat-1.0.1" 85796 - sources."simple-get-3.1.0" 85797 - sources."string-width-1.0.2" 85798 - sources."string_decoder-1.1.1" 85799 - sources."strip-ansi-3.0.1" 85800 - sources."strip-json-comments-2.0.1" 85801 - sources."tar-fs-2.1.1" 85802 - (sources."tar-stream-2.2.0" // { 85803 - dependencies = [ 85804 - sources."readable-stream-3.6.0" 85805 - ]; 85806 - }) 85807 - sources."tunnel-agent-0.6.0" 85808 - sources."util-deprecate-1.0.2" 86278 + sources."node-gyp-build-4.2.3" 85809 86279 sources."uuid-3.4.0" 85810 - sources."wide-align-1.1.3" 85811 - sources."wrappy-1.0.2" 85812 - sources."zeromq-5.2.4" 86280 + sources."zeromq-5.2.7" 85813 86281 ]; 85814 86282 buildInputs = globalBuildInputs; 85815 86283 meta = { ··· 86390 86858 sources."path-key-2.0.1" 86391 86859 ]; 86392 86860 }) 86393 - sources."object-inspect-1.9.0" 86861 + sources."object-inspect-1.10.2" 86394 86862 sources."once-1.4.0" 86395 86863 sources."onetime-2.0.1" 86396 86864 sources."open-7.4.2" ··· 86437 86905 ]; 86438 86906 }) 86439 86907 sources."smart-buffer-4.1.0" 86440 - sources."socks-2.6.0" 86908 + sources."socks-2.6.1" 86441 86909 sources."socks-proxy-agent-5.0.0" 86442 86910 sources."source-map-0.6.1" 86443 86911 sources."split2-3.2.2" ··· 86497 86965 }) 86498 86966 sources."wrappy-1.0.2" 86499 86967 sources."write-file-atomic-3.0.3" 86500 - sources."ws-7.4.4" 86968 + sources."ws-7.4.5" 86501 86969 sources."xregexp-2.0.0" 86502 86970 sources."yallist-3.1.1" 86503 86971 ]; ··· 87070 87538 sources."diff-match-patch-1.0.5" 87071 87539 (sources."dom-serializer-1.3.1" // { 87072 87540 dependencies = [ 87073 - sources."domhandler-4.1.0" 87541 + sources."domhandler-4.2.0" 87074 87542 ]; 87075 87543 }) 87076 87544 sources."domelementtype-2.2.0" 87077 87545 sources."domexception-1.0.1" 87078 87546 sources."domhandler-3.3.0" 87079 - (sources."domutils-2.5.2" // { 87547 + (sources."domutils-2.6.0" // { 87080 87548 dependencies = [ 87081 - sources."domhandler-4.1.0" 87549 + sources."domhandler-4.2.0" 87082 87550 ]; 87083 87551 }) 87084 87552 sources."ecc-jsbn-0.1.2" ··· 87256 87724 ]; 87257 87725 }) 87258 87726 sources."keytar-7.6.0" 87259 - sources."khroma-1.4.0" 87727 + sources."khroma-1.4.1" 87260 87728 sources."klaw-1.3.1" 87261 87729 sources."lazyness-1.2.0" 87262 87730 sources."levenshtein-1.0.5" ··· 87609 88077 ]; 87610 88078 }) 87611 88079 sources."wrappy-1.0.2" 87612 - sources."ws-7.4.4" 88080 + sources."ws-7.4.5" 87613 88081 sources."xml-name-validator-3.0.0" 87614 88082 sources."xml2js-0.4.23" 87615 88083 sources."xmlbuilder-11.0.1" ··· 87630 88098 js-beautify = nodeEnv.buildNodePackage { 87631 88099 name = "js-beautify"; 87632 88100 packageName = "js-beautify"; 87633 - version = "1.13.11"; 88101 + version = "1.13.13"; 87634 88102 src = fetchurl { 87635 - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.11.tgz"; 87636 - sha512 = "+3CW1fQqkV7aXIvprevNYfSrKrASQf02IstAZCVSNh+/IS5ciaOtE7erfjyowdMYZZmP2A7SMFkcJ28qCl84+A=="; 88103 + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.13.tgz"; 88104 + sha512 = "oH+nc0U5mOAqX8M5JO1J0Pw/7Q35sAdOsM5W3i87pir9Ntx6P/5Gx1xLNoK+MGyvHk4rqqRCE4Oq58H6xl2W7A=="; 87637 88105 }; 87638 88106 dependencies = [ 87639 88107 sources."abbrev-1.1.1" ··· 87868 88336 sources."mime-types-2.1.30" 87869 88337 sources."ms-2.1.3" 87870 88338 sources."native-promise-only-0.8.1" 87871 - sources."object-inspect-1.9.0" 88339 + sources."object-inspect-1.10.2" 87872 88340 sources."path-loader-1.0.10" 87873 88341 sources."process-nextick-args-2.0.1" 87874 88342 sources."punycode-2.1.1" ··· 88344 88812 sources."next-tick-1.0.0" 88345 88813 sources."nice-try-1.0.5" 88346 88814 sources."node-downloader-helper-1.0.18" 88347 - sources."object-inspect-1.9.0" 88815 + sources."object-inspect-1.10.2" 88348 88816 sources."object-treeify-1.1.33" 88349 88817 sources."onetime-5.1.2" 88350 88818 sources."os-tmpdir-1.0.2" ··· 88561 89029 sources."void-elements-2.0.1" 88562 89030 sources."wrap-ansi-7.0.0" 88563 89031 sources."wrappy-1.0.2" 88564 - sources."ws-7.4.4" 89032 + sources."ws-7.4.5" 88565 89033 sources."y18n-5.0.8" 88566 89034 sources."yargs-16.2.0" 88567 89035 sources."yargs-parser-20.2.7" ··· 89550 90018 sources."inflight-1.0.6" 89551 90019 sources."inherits-2.0.4" 89552 90020 sources."ini-1.3.8" 89553 - (sources."init-package-json-2.0.2" // { 90021 + (sources."init-package-json-2.0.3" // { 89554 90022 dependencies = [ 89555 90023 sources."normalize-package-data-3.0.2" 89556 90024 sources."read-package-json-3.0.1" ··· 89719 90187 sources."number-is-nan-1.0.1" 89720 90188 sources."oauth-sign-0.9.0" 89721 90189 sources."object-assign-4.1.1" 89722 - sources."object-inspect-1.9.0" 90190 + sources."object-inspect-1.10.2" 89723 90191 sources."object-keys-1.1.1" 89724 90192 sources."object.assign-4.1.2" 89725 90193 sources."object.getownpropertydescriptors-2.1.2" ··· 89827 90295 sources."slash-3.0.0" 89828 90296 sources."slide-1.1.6" 89829 90297 sources."smart-buffer-4.1.0" 89830 - sources."socks-2.6.0" 90298 + sources."socks-2.6.1" 89831 90299 sources."socks-proxy-agent-5.0.0" 89832 90300 sources."sort-keys-2.0.0" 89833 90301 sources."source-map-0.6.1" ··· 90826 91294 sources."uuid-3.4.0" 90827 91295 sources."vary-1.1.2" 90828 91296 sources."verror-1.10.0" 90829 - sources."ws-7.4.4" 91297 + sources."ws-7.4.5" 90830 91298 sources."xmlhttprequest-ssl-1.5.5" 90831 91299 sources."yeast-0.1.2" 90832 91300 ]; ··· 91142 91610 sources."cached-path-relative-1.0.2" 91143 91611 sources."call-bind-1.0.2" 91144 91612 sources."camelcase-5.3.1" 91145 - sources."caniuse-lite-1.0.30001208" 91613 + sources."caniuse-lite-1.0.30001209" 91146 91614 sources."capture-exit-2.0.0" 91147 91615 sources."caseless-0.12.0" 91148 91616 (sources."chalk-3.0.0" // { ··· 92544 93012 sources."ieee754-1.2.1" 92545 93013 sources."inflight-1.0.6" 92546 93014 sources."inherits-2.0.4" 92547 - sources."khroma-1.4.0" 93015 + sources."khroma-1.4.1" 92548 93016 sources."locate-path-5.0.0" 92549 93017 sources."lodash-4.17.21" 92550 93018 sources."lower-case-1.1.4" ··· 92595 93063 sources."upper-case-1.1.3" 92596 93064 sources."util-deprecate-1.0.2" 92597 93065 sources."wrappy-1.0.2" 92598 - sources."ws-7.4.4" 93066 + sources."ws-7.4.5" 92599 93067 sources."yauzl-2.10.0" 92600 93068 ]; 92601 93069 buildInputs = globalBuildInputs; ··· 92620 93088 sources."@fluentui/date-time-utilities-7.9.1" 92621 93089 sources."@fluentui/dom-utilities-1.1.2" 92622 93090 sources."@fluentui/keyboard-key-0.2.16" 92623 - sources."@fluentui/react-7.167.0" 93091 + sources."@fluentui/react-7.168.0" 92624 93092 sources."@fluentui/react-focus-7.17.6" 92625 93093 sources."@fluentui/react-window-provider-1.0.2" 92626 93094 sources."@fluentui/theme-1.7.4" ··· 92760 93228 sources."node-fetch-1.6.3" 92761 93229 sources."normalize-url-4.5.0" 92762 93230 sources."object-assign-4.1.1" 92763 - sources."office-ui-fabric-react-7.167.0" 93231 + sources."office-ui-fabric-react-7.168.0" 92764 93232 sources."on-finished-2.3.0" 92765 93233 sources."on-headers-1.0.2" 92766 93234 sources."once-1.4.0" ··· 93049 93517 sources."mime-types-2.1.30" 93050 93518 sources."ms-2.1.3" 93051 93519 sources."native-promise-only-0.8.1" 93052 - sources."object-inspect-1.9.0" 93520 + sources."object-inspect-1.10.2" 93053 93521 sources."path-loader-1.0.10" 93054 93522 sources."process-nextick-args-2.0.1" 93055 93523 sources."punycode-2.1.1" ··· 93136 93604 netlify-cli = nodeEnv.buildNodePackage { 93137 93605 name = "netlify-cli"; 93138 93606 packageName = "netlify-cli"; 93139 - version = "3.18.2"; 93607 + version = "3.18.3"; 93140 93608 src = fetchurl { 93141 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.18.2.tgz"; 93142 - sha512 = "PfsSVVLbVX7L9ZvvUL52gslq8FByh6U/fmlDe0Gv8FVnCzMl0SlSdcrG8OhW8QayE0KgV9lMOu9Mrvv/UaRwtQ=="; 93609 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.18.3.tgz"; 93610 + sha512 = "VonzQOBohu/+G++NiVIwoyrwDaGo7VV4kzqrJr9pc7KWm95iBT+4FBvlzAk4VYg6vU5/3WYcOIwQTNSOZKcJiA=="; 93143 93611 }; 93144 93612 dependencies = [ 93145 93613 sources."@babel/code-frame-7.12.13" ··· 93261 93729 sources."@dabh/diagnostics-2.0.2" 93262 93730 sources."@jest/types-24.9.0" 93263 93731 sources."@mrmlnc/readdir-enhanced-2.2.1" 93264 - (sources."@netlify/build-11.0.2" // { 93732 + (sources."@netlify/build-11.1.0" // { 93265 93733 dependencies = [ 93266 93734 sources."ansi-styles-4.3.0" 93267 93735 sources."chalk-3.0.0" ··· 93288 93756 sources."locate-path-5.0.0" 93289 93757 ]; 93290 93758 }) 93291 - sources."@netlify/functions-utils-1.3.24" 93759 + sources."@netlify/functions-utils-1.3.25" 93292 93760 (sources."@netlify/git-utils-1.0.8" // { 93293 93761 dependencies = [ 93294 93762 sources."braces-3.0.2" ··· 93503 93971 sources."@rollup/pluginutils-3.1.0" 93504 93972 sources."@samverschueren/stream-to-observable-0.3.1" 93505 93973 sources."@sindresorhus/is-0.14.0" 93506 - (sources."@sindresorhus/slugify-1.1.0" // { 93974 + (sources."@sindresorhus/slugify-1.1.2" // { 93507 93975 dependencies = [ 93508 93976 sources."escape-string-regexp-4.0.0" 93509 93977 ]; ··· 93673 94141 sources."call-bind-1.0.2" 93674 94142 sources."call-me-maybe-1.0.1" 93675 94143 sources."camelcase-5.3.1" 93676 - sources."caniuse-lite-1.0.30001208" 94144 + sources."caniuse-lite-1.0.30001209" 93677 94145 sources."cardinal-2.1.1" 93678 94146 sources."caw-2.0.1" 93679 94147 (sources."chalk-2.4.2" // { ··· 93934 94402 sources."envinfo-7.8.1" 93935 94403 sources."error-ex-1.3.2" 93936 94404 sources."error-stack-parser-2.0.6" 93937 - sources."esbuild-0.11.11" 94405 + sources."esbuild-0.11.12" 93938 94406 sources."escalade-3.1.1" 93939 94407 sources."escape-goat-2.1.1" 93940 94408 sources."escape-html-1.0.3" ··· 94540 95008 sources."kind-of-3.2.2" 94541 95009 ]; 94542 95010 }) 94543 - sources."object-inspect-1.9.0" 95011 + sources."object-inspect-1.10.2" 94544 95012 sources."object-keys-1.1.1" 94545 95013 sources."object-treeify-1.1.33" 94546 95014 sources."object-visit-1.0.1" ··· 95195 95663 sources."set-blocking-2.0.0" 95196 95664 sources."signal-exit-3.0.3" 95197 95665 sources."smart-buffer-4.1.0" 95198 - sources."socks-2.6.0" 95666 + sources."socks-2.6.1" 95199 95667 sources."socks-proxy-agent-5.0.0" 95200 95668 sources."ssri-8.0.1" 95201 95669 sources."string-width-1.0.2" ··· 95916 96384 sources."ms-2.1.2" 95917 96385 sources."readable-stream-3.6.0" 95918 96386 sources."string_decoder-1.3.0" 95919 - sources."ws-7.4.4" 96387 + sources."ws-7.4.5" 95920 96388 ]; 95921 96389 }) 95922 - (sources."mqtt-packet-6.9.0" // { 96390 + (sources."mqtt-packet-6.9.1" // { 95923 96391 dependencies = [ 95924 96392 sources."debug-4.3.2" 95925 96393 sources."ms-2.1.2" ··· 97316 97784 sources."sisteransi-1.0.5" 97317 97785 sources."slash-3.0.0" 97318 97786 sources."smart-buffer-4.1.0" 97319 - sources."socks-2.6.0" 97787 + sources."socks-2.6.1" 97320 97788 sources."socks-proxy-agent-5.0.0" 97321 97789 sources."spawn-please-1.0.0" 97322 97790 sources."sshpk-1.16.1" ··· 97845 98313 sources."caller-path-2.0.0" 97846 98314 sources."callsites-2.0.0" 97847 98315 sources."caniuse-api-3.0.0" 97848 - sources."caniuse-lite-1.0.30001208" 98316 + sources."caniuse-lite-1.0.30001209" 97849 98317 sources."caseless-0.12.0" 97850 98318 sources."chalk-2.4.2" 97851 98319 sources."chokidar-2.1.8" ··· 97972 98440 sources."domain-browser-1.2.0" 97973 98441 sources."domelementtype-1.3.1" 97974 98442 sources."domexception-1.0.1" 97975 - (sources."domhandler-4.1.0" // { 98443 + (sources."domhandler-4.2.0" // { 97976 98444 dependencies = [ 97977 98445 sources."domelementtype-2.2.0" 97978 98446 ]; ··· 97996 98464 sources."error-ex-1.3.2" 97997 98465 (sources."es-abstract-1.18.0" // { 97998 98466 dependencies = [ 97999 - sources."object-inspect-1.9.0" 98467 + sources."object-inspect-1.10.2" 98000 98468 ]; 98001 98469 }) 98002 98470 sources."es-to-primitive-1.2.1" ··· 98099 98567 dependencies = [ 98100 98568 sources."dom-serializer-1.3.1" 98101 98569 sources."domelementtype-2.2.0" 98102 - sources."domutils-2.5.2" 98570 + sources."domutils-2.6.0" 98103 98571 sources."entities-2.2.0" 98104 98572 ]; 98105 98573 }) ··· 99625 100093 sources."verror-1.10.0" 99626 100094 sources."which-1.3.1" 99627 100095 sources."wrappy-1.0.2" 99628 - sources."ws-7.4.4" 100096 + sources."ws-7.4.5" 99629 100097 sources."xmlhttprequest-ssl-1.5.5" 99630 100098 sources."xtend-4.0.2" 99631 100099 sources."yeast-0.1.2" ··· 99831 100299 sources."shimmer-1.2.1" 99832 100300 sources."signal-exit-3.0.3" 99833 100301 sources."smart-buffer-4.1.0" 99834 - sources."socks-2.6.0" 100302 + sources."socks-2.6.1" 99835 100303 sources."socks-proxy-agent-5.0.0" 99836 100304 sources."source-map-0.6.1" 99837 100305 sources."source-map-support-0.5.19" ··· 100424 100892 pyright = nodeEnv.buildNodePackage { 100425 100893 name = "pyright"; 100426 100894 packageName = "pyright"; 100427 - version = "1.1.130"; 100895 + version = "1.1.132"; 100428 100896 src = fetchurl { 100429 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.130.tgz"; 100430 - sha512 = "hj4Lvn0x5LFsZDJaZ5hW5X4NfHSCoMvEqcNvRgpYM59qAM22z7XC+Tb7XNrQEhOfIjsbczS3nKWGGUMCe88LXg=="; 100897 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.132.tgz"; 100898 + sha512 = "quvG9Ip2NwKEShsLJ7eLlkQ/ST5SX84QCgO/k7gGqlCHwuifn9/v7LrzdpdFbkVnQR51egUNWwwLQRoIBT6vUA=="; 100431 100899 }; 100432 100900 buildInputs = globalBuildInputs; 100433 100901 meta = { ··· 100726 101194 sources."mkdirp-0.5.5" 100727 101195 sources."mute-stream-0.0.8" 100728 101196 sources."ncp-0.4.2" 100729 - sources."object-inspect-1.9.0" 101197 + sources."object-inspect-1.10.2" 100730 101198 sources."object-is-1.1.5" 100731 101199 sources."object-keys-1.1.1" 100732 101200 sources."object.assign-4.1.2" ··· 100767 101235 bypassCache = true; 100768 101236 reconstructLock = true; 100769 101237 }; 101238 + react-static = nodeEnv.buildNodePackage { 101239 + name = "react-static"; 101240 + packageName = "react-static"; 101241 + version = "7.5.3"; 101242 + src = fetchurl { 101243 + url = "https://registry.npmjs.org/react-static/-/react-static-7.5.3.tgz"; 101244 + sha512 = "coA9MuNPfN+8TyFj7aOycw2e5W9t+sSgFOUyK30oDrh2MWWWHLjY0I4V1puyCconC2arggfDE2GYXvqOTCGv9Q=="; 101245 + }; 101246 + dependencies = [ 101247 + sources."@babel/cli-7.13.14" 101248 + sources."@babel/code-frame-7.12.13" 101249 + sources."@babel/compat-data-7.13.15" 101250 + (sources."@babel/core-7.13.15" // { 101251 + dependencies = [ 101252 + sources."semver-6.3.0" 101253 + ]; 101254 + }) 101255 + sources."@babel/generator-7.13.9" 101256 + sources."@babel/helper-annotate-as-pure-7.12.13" 101257 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 101258 + (sources."@babel/helper-compilation-targets-7.13.13" // { 101259 + dependencies = [ 101260 + sources."semver-6.3.0" 101261 + ]; 101262 + }) 101263 + sources."@babel/helper-create-class-features-plugin-7.13.11" 101264 + sources."@babel/helper-create-regexp-features-plugin-7.12.17" 101265 + (sources."@babel/helper-define-polyfill-provider-0.2.0" // { 101266 + dependencies = [ 101267 + sources."semver-6.3.0" 101268 + ]; 101269 + }) 101270 + sources."@babel/helper-explode-assignable-expression-7.13.0" 101271 + sources."@babel/helper-function-name-7.12.13" 101272 + sources."@babel/helper-get-function-arity-7.12.13" 101273 + sources."@babel/helper-hoist-variables-7.13.0" 101274 + sources."@babel/helper-member-expression-to-functions-7.13.12" 101275 + sources."@babel/helper-module-imports-7.13.12" 101276 + sources."@babel/helper-module-transforms-7.13.14" 101277 + sources."@babel/helper-optimise-call-expression-7.12.13" 101278 + sources."@babel/helper-plugin-utils-7.13.0" 101279 + sources."@babel/helper-remap-async-to-generator-7.13.0" 101280 + sources."@babel/helper-replace-supers-7.13.12" 101281 + sources."@babel/helper-simple-access-7.13.12" 101282 + sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 101283 + sources."@babel/helper-split-export-declaration-7.12.13" 101284 + sources."@babel/helper-validator-identifier-7.12.11" 101285 + sources."@babel/helper-validator-option-7.12.17" 101286 + sources."@babel/helper-wrap-function-7.13.0" 101287 + sources."@babel/helpers-7.13.10" 101288 + sources."@babel/highlight-7.13.10" 101289 + sources."@babel/parser-7.13.15" 101290 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" 101291 + sources."@babel/plugin-proposal-async-generator-functions-7.13.15" 101292 + sources."@babel/plugin-proposal-class-properties-7.13.0" 101293 + sources."@babel/plugin-proposal-dynamic-import-7.13.8" 101294 + sources."@babel/plugin-proposal-export-default-from-7.12.13" 101295 + sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 101296 + sources."@babel/plugin-proposal-json-strings-7.13.8" 101297 + sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8" 101298 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" 101299 + sources."@babel/plugin-proposal-numeric-separator-7.12.13" 101300 + sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 101301 + sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 101302 + sources."@babel/plugin-proposal-optional-chaining-7.13.12" 101303 + sources."@babel/plugin-proposal-private-methods-7.13.0" 101304 + sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 101305 + sources."@babel/plugin-syntax-async-generators-7.8.4" 101306 + sources."@babel/plugin-syntax-class-properties-7.12.13" 101307 + sources."@babel/plugin-syntax-dynamic-import-7.8.3" 101308 + sources."@babel/plugin-syntax-export-default-from-7.12.13" 101309 + sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 101310 + sources."@babel/plugin-syntax-json-strings-7.8.3" 101311 + sources."@babel/plugin-syntax-jsx-7.12.13" 101312 + sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 101313 + sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 101314 + sources."@babel/plugin-syntax-numeric-separator-7.10.4" 101315 + sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 101316 + sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 101317 + sources."@babel/plugin-syntax-optional-chaining-7.8.3" 101318 + sources."@babel/plugin-syntax-top-level-await-7.12.13" 101319 + sources."@babel/plugin-transform-arrow-functions-7.13.0" 101320 + sources."@babel/plugin-transform-async-to-generator-7.13.0" 101321 + sources."@babel/plugin-transform-block-scoped-functions-7.12.13" 101322 + sources."@babel/plugin-transform-block-scoping-7.12.13" 101323 + sources."@babel/plugin-transform-classes-7.13.0" 101324 + sources."@babel/plugin-transform-computed-properties-7.13.0" 101325 + sources."@babel/plugin-transform-destructuring-7.13.0" 101326 + sources."@babel/plugin-transform-dotall-regex-7.12.13" 101327 + sources."@babel/plugin-transform-duplicate-keys-7.12.13" 101328 + sources."@babel/plugin-transform-exponentiation-operator-7.12.13" 101329 + sources."@babel/plugin-transform-for-of-7.13.0" 101330 + sources."@babel/plugin-transform-function-name-7.12.13" 101331 + sources."@babel/plugin-transform-literals-7.12.13" 101332 + sources."@babel/plugin-transform-member-expression-literals-7.12.13" 101333 + sources."@babel/plugin-transform-modules-amd-7.13.0" 101334 + sources."@babel/plugin-transform-modules-commonjs-7.13.8" 101335 + sources."@babel/plugin-transform-modules-systemjs-7.13.8" 101336 + sources."@babel/plugin-transform-modules-umd-7.13.0" 101337 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13" 101338 + sources."@babel/plugin-transform-new-target-7.12.13" 101339 + sources."@babel/plugin-transform-object-super-7.12.13" 101340 + sources."@babel/plugin-transform-parameters-7.13.0" 101341 + sources."@babel/plugin-transform-property-literals-7.12.13" 101342 + sources."@babel/plugin-transform-react-display-name-7.12.13" 101343 + sources."@babel/plugin-transform-react-jsx-7.13.12" 101344 + sources."@babel/plugin-transform-react-jsx-development-7.12.17" 101345 + sources."@babel/plugin-transform-react-pure-annotations-7.12.1" 101346 + sources."@babel/plugin-transform-regenerator-7.13.15" 101347 + sources."@babel/plugin-transform-reserved-words-7.12.13" 101348 + (sources."@babel/plugin-transform-runtime-7.13.15" // { 101349 + dependencies = [ 101350 + sources."semver-6.3.0" 101351 + ]; 101352 + }) 101353 + sources."@babel/plugin-transform-shorthand-properties-7.12.13" 101354 + sources."@babel/plugin-transform-spread-7.13.0" 101355 + sources."@babel/plugin-transform-sticky-regex-7.12.13" 101356 + sources."@babel/plugin-transform-template-literals-7.13.0" 101357 + sources."@babel/plugin-transform-typeof-symbol-7.12.13" 101358 + sources."@babel/plugin-transform-unicode-escapes-7.12.13" 101359 + sources."@babel/plugin-transform-unicode-regex-7.12.13" 101360 + (sources."@babel/preset-env-7.13.15" // { 101361 + dependencies = [ 101362 + sources."semver-6.3.0" 101363 + ]; 101364 + }) 101365 + sources."@babel/preset-modules-0.1.4" 101366 + sources."@babel/preset-react-7.13.13" 101367 + sources."@babel/preset-stage-0-7.8.3" 101368 + sources."@babel/register-7.13.14" 101369 + sources."@babel/runtime-7.13.10" 101370 + sources."@babel/template-7.12.13" 101371 + sources."@babel/traverse-7.13.15" 101372 + sources."@babel/types-7.13.14" 101373 + sources."@reach/router-1.3.4" 101374 + sources."@sindresorhus/is-0.7.0" 101375 + sources."@types/glob-7.1.3" 101376 + sources."@types/json-schema-7.0.7" 101377 + sources."@types/minimatch-3.0.4" 101378 + sources."@types/node-14.14.41" 101379 + sources."@types/parse-json-4.0.0" 101380 + sources."@types/q-1.5.4" 101381 + sources."@webassemblyjs/ast-1.9.0" 101382 + sources."@webassemblyjs/floating-point-hex-parser-1.9.0" 101383 + sources."@webassemblyjs/helper-api-error-1.9.0" 101384 + sources."@webassemblyjs/helper-buffer-1.9.0" 101385 + sources."@webassemblyjs/helper-code-frame-1.9.0" 101386 + sources."@webassemblyjs/helper-fsm-1.9.0" 101387 + sources."@webassemblyjs/helper-module-context-1.9.0" 101388 + sources."@webassemblyjs/helper-wasm-bytecode-1.9.0" 101389 + sources."@webassemblyjs/helper-wasm-section-1.9.0" 101390 + sources."@webassemblyjs/ieee754-1.9.0" 101391 + sources."@webassemblyjs/leb128-1.9.0" 101392 + sources."@webassemblyjs/utf8-1.9.0" 101393 + sources."@webassemblyjs/wasm-edit-1.9.0" 101394 + sources."@webassemblyjs/wasm-gen-1.9.0" 101395 + sources."@webassemblyjs/wasm-opt-1.9.0" 101396 + sources."@webassemblyjs/wasm-parser-1.9.0" 101397 + sources."@webassemblyjs/wast-parser-1.9.0" 101398 + sources."@webassemblyjs/wast-printer-1.9.0" 101399 + sources."@xtuc/ieee754-1.2.0" 101400 + sources."@xtuc/long-4.2.2" 101401 + sources."@zeit/schemas-2.6.0" 101402 + sources."accepts-1.3.7" 101403 + sources."acorn-6.4.2" 101404 + sources."acorn-walk-7.2.0" 101405 + sources."after-0.8.2" 101406 + sources."ajv-6.12.6" 101407 + sources."ajv-errors-1.0.1" 101408 + sources."ajv-keywords-3.5.2" 101409 + sources."alphanum-sort-1.0.2" 101410 + sources."ansi-align-2.0.0" 101411 + sources."ansi-colors-3.2.4" 101412 + sources."ansi-escapes-3.2.0" 101413 + sources."ansi-html-0.0.7" 101414 + sources."ansi-regex-3.0.0" 101415 + sources."ansi-styles-3.2.1" 101416 + sources."anymatch-3.1.2" 101417 + sources."aproba-1.2.0" 101418 + sources."arch-2.2.0" 101419 + (sources."archive-type-4.0.0" // { 101420 + dependencies = [ 101421 + sources."file-type-4.4.0" 101422 + ]; 101423 + }) 101424 + sources."arg-2.0.0" 101425 + sources."argparse-1.0.10" 101426 + sources."arr-diff-4.0.0" 101427 + sources."arr-flatten-1.1.0" 101428 + sources."arr-union-3.1.0" 101429 + sources."array-flatten-1.1.1" 101430 + sources."array-union-1.0.2" 101431 + sources."array-uniq-1.0.3" 101432 + sources."array-unique-0.3.2" 101433 + sources."arraybuffer.slice-0.0.7" 101434 + (sources."asn1.js-5.4.1" // { 101435 + dependencies = [ 101436 + sources."bn.js-4.12.0" 101437 + ]; 101438 + }) 101439 + (sources."assert-1.5.0" // { 101440 + dependencies = [ 101441 + sources."inherits-2.0.1" 101442 + sources."util-0.10.3" 101443 + ]; 101444 + }) 101445 + sources."assign-symbols-1.0.0" 101446 + sources."async-2.6.3" 101447 + sources."async-each-1.0.3" 101448 + sources."async-limiter-1.0.1" 101449 + sources."atob-2.1.2" 101450 + sources."autoprefixer-9.8.6" 101451 + sources."axios-0.21.1" 101452 + sources."babel-core-7.0.0-bridge.0" 101453 + (sources."babel-loader-8.2.2" // { 101454 + dependencies = [ 101455 + sources."find-cache-dir-3.3.1" 101456 + sources."find-up-4.1.0" 101457 + sources."locate-path-5.0.0" 101458 + sources."make-dir-3.1.0" 101459 + sources."p-locate-4.1.0" 101460 + sources."path-exists-4.0.0" 101461 + sources."pkg-dir-4.2.0" 101462 + sources."semver-6.3.0" 101463 + ]; 101464 + }) 101465 + sources."babel-plugin-dynamic-import-node-2.3.3" 101466 + sources."babel-plugin-macros-2.8.0" 101467 + (sources."babel-plugin-polyfill-corejs2-0.2.0" // { 101468 + dependencies = [ 101469 + sources."semver-6.3.0" 101470 + ]; 101471 + }) 101472 + sources."babel-plugin-polyfill-corejs3-0.2.0" 101473 + sources."babel-plugin-polyfill-regenerator-0.2.0" 101474 + sources."babel-plugin-transform-react-remove-prop-types-0.4.24" 101475 + sources."babel-plugin-universal-import-4.0.2" 101476 + (sources."babel-runtime-6.26.0" // { 101477 + dependencies = [ 101478 + sources."regenerator-runtime-0.11.1" 101479 + ]; 101480 + }) 101481 + sources."backo2-1.0.2" 101482 + sources."balanced-match-1.0.2" 101483 + (sources."base-0.11.2" // { 101484 + dependencies = [ 101485 + sources."define-property-1.0.0" 101486 + ]; 101487 + }) 101488 + sources."base64-arraybuffer-0.1.4" 101489 + sources."base64-js-1.5.1" 101490 + sources."base64id-2.0.0" 101491 + sources."batch-0.6.1" 101492 + sources."bfj-6.1.2" 101493 + sources."big.js-5.2.2" 101494 + sources."binary-extensions-2.2.0" 101495 + sources."bindings-1.5.0" 101496 + sources."bl-1.2.3" 101497 + sources."blob-0.0.5" 101498 + sources."bluebird-3.7.2" 101499 + sources."bn.js-5.2.0" 101500 + (sources."body-parser-1.19.0" // { 101501 + dependencies = [ 101502 + sources."bytes-3.1.0" 101503 + sources."debug-2.6.9" 101504 + sources."ms-2.0.0" 101505 + ]; 101506 + }) 101507 + (sources."bonjour-3.5.0" // { 101508 + dependencies = [ 101509 + sources."array-flatten-2.1.2" 101510 + ]; 101511 + }) 101512 + sources."boolbase-1.0.0" 101513 + (sources."boxen-1.3.0" // { 101514 + dependencies = [ 101515 + sources."camelcase-4.1.0" 101516 + ]; 101517 + }) 101518 + sources."brace-expansion-1.1.11" 101519 + sources."braces-3.0.2" 101520 + sources."brorand-1.1.0" 101521 + sources."browserify-aes-1.2.0" 101522 + sources."browserify-cipher-1.0.1" 101523 + sources."browserify-des-1.0.2" 101524 + sources."browserify-rsa-4.1.0" 101525 + (sources."browserify-sign-4.2.1" // { 101526 + dependencies = [ 101527 + sources."readable-stream-3.6.0" 101528 + sources."safe-buffer-5.2.1" 101529 + ]; 101530 + }) 101531 + sources."browserify-zlib-0.1.4" 101532 + sources."browserslist-4.16.4" 101533 + sources."buffer-5.7.1" 101534 + sources."buffer-alloc-1.2.0" 101535 + sources."buffer-alloc-unsafe-1.1.0" 101536 + sources."buffer-crc32-0.2.13" 101537 + sources."buffer-fill-1.0.0" 101538 + sources."buffer-from-1.1.1" 101539 + sources."buffer-indexof-1.1.1" 101540 + sources."buffer-xor-1.0.3" 101541 + sources."builtin-status-codes-3.0.0" 101542 + sources."bytes-3.0.0" 101543 + (sources."cacache-12.0.4" // { 101544 + dependencies = [ 101545 + sources."lru-cache-5.1.1" 101546 + sources."yallist-3.1.1" 101547 + ]; 101548 + }) 101549 + sources."cache-base-1.0.1" 101550 + (sources."cacheable-request-2.1.4" // { 101551 + dependencies = [ 101552 + sources."lowercase-keys-1.0.0" 101553 + ]; 101554 + }) 101555 + sources."call-bind-1.0.2" 101556 + (sources."caller-callsite-2.0.0" // { 101557 + dependencies = [ 101558 + sources."callsites-2.0.0" 101559 + ]; 101560 + }) 101561 + sources."caller-path-2.0.0" 101562 + sources."callsites-3.1.0" 101563 + sources."camel-case-3.0.0" 101564 + sources."camelcase-5.3.1" 101565 + sources."caniuse-api-3.0.0" 101566 + sources."caniuse-lite-1.0.30001209" 101567 + sources."case-sensitive-paths-webpack-plugin-2.4.0" 101568 + sources."caw-2.0.1" 101569 + (sources."chalk-2.4.2" // { 101570 + dependencies = [ 101571 + sources."supports-color-5.5.0" 101572 + ]; 101573 + }) 101574 + sources."chardet-0.7.0" 101575 + sources."check-types-8.0.3" 101576 + sources."chokidar-3.5.1" 101577 + sources."chownr-1.1.4" 101578 + sources."chrome-trace-event-1.0.3" 101579 + sources."cipher-base-1.0.4" 101580 + sources."circular-dependency-plugin-5.2.2" 101581 + (sources."class-utils-0.3.6" // { 101582 + dependencies = [ 101583 + sources."define-property-0.2.5" 101584 + (sources."is-accessor-descriptor-0.1.6" // { 101585 + dependencies = [ 101586 + sources."kind-of-3.2.2" 101587 + ]; 101588 + }) 101589 + (sources."is-data-descriptor-0.1.4" // { 101590 + dependencies = [ 101591 + sources."kind-of-3.2.2" 101592 + ]; 101593 + }) 101594 + sources."is-descriptor-0.1.6" 101595 + sources."kind-of-5.1.0" 101596 + ]; 101597 + }) 101598 + (sources."clean-css-4.2.3" // { 101599 + dependencies = [ 101600 + sources."source-map-0.6.1" 101601 + ]; 101602 + }) 101603 + sources."cli-boxes-1.0.0" 101604 + sources."cli-cursor-2.1.0" 101605 + sources."cli-width-2.2.1" 101606 + (sources."clipboardy-1.2.3" // { 101607 + dependencies = [ 101608 + sources."execa-0.8.0" 101609 + ]; 101610 + }) 101611 + (sources."cliui-5.0.0" // { 101612 + dependencies = [ 101613 + sources."string-width-3.1.0" 101614 + ]; 101615 + }) 101616 + sources."clone-response-1.0.2" 101617 + sources."coa-2.0.2" 101618 + sources."collection-visit-1.0.0" 101619 + sources."color-3.1.3" 101620 + sources."color-convert-1.9.3" 101621 + sources."color-name-1.1.3" 101622 + sources."color-string-1.5.5" 101623 + sources."colorette-1.2.2" 101624 + sources."commander-4.1.1" 101625 + sources."commondir-1.0.1" 101626 + sources."component-bind-1.0.0" 101627 + sources."component-emitter-1.2.1" 101628 + sources."component-inherit-0.0.3" 101629 + sources."compressible-2.0.18" 101630 + (sources."compression-1.7.3" // { 101631 + dependencies = [ 101632 + sources."debug-2.6.9" 101633 + sources."ms-2.0.0" 101634 + ]; 101635 + }) 101636 + sources."concat-map-0.0.1" 101637 + sources."concat-stream-1.6.2" 101638 + sources."config-chain-1.1.12" 101639 + sources."connect-history-api-fallback-1.6.0" 101640 + sources."console-browserify-1.2.0" 101641 + sources."constants-browserify-1.0.0" 101642 + sources."content-disposition-0.5.3" 101643 + sources."content-type-1.0.4" 101644 + sources."convert-source-map-1.7.0" 101645 + sources."cookie-0.4.1" 101646 + sources."cookie-signature-1.0.6" 101647 + sources."copy-concurrently-1.0.5" 101648 + sources."copy-descriptor-0.1.1" 101649 + sources."core-js-2.6.12" 101650 + (sources."core-js-compat-3.10.1" // { 101651 + dependencies = [ 101652 + sources."semver-7.0.0" 101653 + ]; 101654 + }) 101655 + sources."core-util-is-1.0.2" 101656 + sources."cors-2.8.5" 101657 + sources."cosmiconfig-6.0.0" 101658 + (sources."create-ecdh-4.0.4" // { 101659 + dependencies = [ 101660 + sources."bn.js-4.12.0" 101661 + ]; 101662 + }) 101663 + sources."create-hash-1.2.0" 101664 + sources."create-hmac-1.1.7" 101665 + sources."create-react-context-0.3.0" 101666 + sources."cross-spawn-5.1.0" 101667 + sources."crypto-browserify-3.12.0" 101668 + sources."css-color-names-0.0.4" 101669 + sources."css-declaration-sorter-4.0.1" 101670 + (sources."css-loader-2.1.1" // { 101671 + dependencies = [ 101672 + sources."postcss-value-parser-3.3.1" 101673 + sources."schema-utils-1.0.0" 101674 + ]; 101675 + }) 101676 + sources."css-select-2.1.0" 101677 + sources."css-select-base-adapter-0.1.1" 101678 + (sources."css-tree-1.0.0-alpha.37" // { 101679 + dependencies = [ 101680 + sources."source-map-0.6.1" 101681 + ]; 101682 + }) 101683 + sources."css-what-3.4.2" 101684 + sources."cssesc-3.0.0" 101685 + (sources."cssnano-4.1.11" // { 101686 + dependencies = [ 101687 + sources."cosmiconfig-5.2.1" 101688 + sources."import-fresh-2.0.0" 101689 + sources."parse-json-4.0.0" 101690 + sources."resolve-from-3.0.0" 101691 + ]; 101692 + }) 101693 + sources."cssnano-preset-default-4.0.8" 101694 + sources."cssnano-util-get-arguments-4.0.0" 101695 + sources."cssnano-util-get-match-4.0.0" 101696 + sources."cssnano-util-raw-cache-4.0.1" 101697 + sources."cssnano-util-same-parent-4.0.1" 101698 + (sources."csso-4.2.0" // { 101699 + dependencies = [ 101700 + sources."css-tree-1.1.3" 101701 + sources."mdn-data-2.0.14" 101702 + sources."source-map-0.6.1" 101703 + ]; 101704 + }) 101705 + sources."cyclist-1.0.1" 101706 + sources."debug-4.3.2" 101707 + sources."decamelize-1.2.0" 101708 + sources."decode-uri-component-0.2.0" 101709 + (sources."decompress-4.2.1" // { 101710 + dependencies = [ 101711 + (sources."make-dir-1.3.0" // { 101712 + dependencies = [ 101713 + sources."pify-3.0.0" 101714 + ]; 101715 + }) 101716 + sources."pify-2.3.0" 101717 + ]; 101718 + }) 101719 + sources."decompress-response-3.3.0" 101720 + (sources."decompress-tar-4.1.1" // { 101721 + dependencies = [ 101722 + sources."file-type-5.2.0" 101723 + ]; 101724 + }) 101725 + (sources."decompress-tarbz2-4.1.1" // { 101726 + dependencies = [ 101727 + sources."file-type-6.2.0" 101728 + ]; 101729 + }) 101730 + (sources."decompress-targz-4.1.1" // { 101731 + dependencies = [ 101732 + sources."file-type-5.2.0" 101733 + ]; 101734 + }) 101735 + (sources."decompress-unzip-4.0.1" // { 101736 + dependencies = [ 101737 + sources."file-type-3.9.0" 101738 + sources."get-stream-2.3.1" 101739 + sources."pify-2.3.0" 101740 + ]; 101741 + }) 101742 + sources."deep-equal-1.1.1" 101743 + sources."deep-extend-0.6.0" 101744 + (sources."default-gateway-4.2.0" // { 101745 + dependencies = [ 101746 + sources."cross-spawn-6.0.5" 101747 + sources."execa-1.0.0" 101748 + sources."get-stream-4.1.0" 101749 + sources."pump-3.0.0" 101750 + ]; 101751 + }) 101752 + sources."define-properties-1.1.3" 101753 + sources."define-property-2.0.2" 101754 + sources."del-4.1.1" 101755 + sources."depd-1.1.2" 101756 + sources."des.js-1.0.1" 101757 + sources."destroy-1.0.4" 101758 + sources."detect-node-2.0.5" 101759 + (sources."diffie-hellman-5.0.3" // { 101760 + dependencies = [ 101761 + sources."bn.js-4.12.0" 101762 + ]; 101763 + }) 101764 + sources."dns-equal-1.0.0" 101765 + sources."dns-packet-1.3.1" 101766 + sources."dns-txt-2.0.2" 101767 + sources."dom-converter-0.2.0" 101768 + (sources."dom-serializer-0.2.2" // { 101769 + dependencies = [ 101770 + sources."domelementtype-2.2.0" 101771 + ]; 101772 + }) 101773 + sources."domain-browser-1.2.0" 101774 + sources."domelementtype-1.3.1" 101775 + sources."domhandler-2.4.2" 101776 + sources."domutils-1.7.0" 101777 + sources."dot-prop-5.3.0" 101778 + (sources."download-7.1.0" // { 101779 + dependencies = [ 101780 + sources."make-dir-1.3.0" 101781 + sources."pify-3.0.0" 101782 + ]; 101783 + }) 101784 + sources."download-git-repo-2.0.0" 101785 + sources."duplexer-0.1.2" 101786 + sources."duplexer3-0.1.4" 101787 + sources."duplexify-3.7.1" 101788 + sources."ee-first-1.1.1" 101789 + sources."ejs-2.7.4" 101790 + sources."electron-to-chromium-1.3.717" 101791 + (sources."elliptic-6.5.4" // { 101792 + dependencies = [ 101793 + sources."bn.js-4.12.0" 101794 + ]; 101795 + }) 101796 + sources."emoji-regex-7.0.3" 101797 + sources."emojis-list-3.0.0" 101798 + sources."encodeurl-1.0.2" 101799 + sources."end-of-stream-1.4.4" 101800 + (sources."engine.io-3.5.0" // { 101801 + dependencies = [ 101802 + sources."debug-4.1.1" 101803 + ]; 101804 + }) 101805 + (sources."engine.io-client-3.5.1" // { 101806 + dependencies = [ 101807 + sources."component-emitter-1.3.0" 101808 + sources."debug-3.1.0" 101809 + sources."ms-2.0.0" 101810 + ]; 101811 + }) 101812 + sources."engine.io-parser-2.2.1" 101813 + (sources."enhanced-resolve-4.5.0" // { 101814 + dependencies = [ 101815 + sources."memory-fs-0.5.0" 101816 + ]; 101817 + }) 101818 + sources."entities-2.2.0" 101819 + sources."errno-0.1.8" 101820 + sources."error-ex-1.3.2" 101821 + sources."es-abstract-1.18.0" 101822 + sources."es-to-primitive-1.2.1" 101823 + sources."escalade-3.1.1" 101824 + sources."escape-html-1.0.3" 101825 + sources."escape-string-regexp-1.0.5" 101826 + sources."eslint-scope-4.0.3" 101827 + sources."esprima-4.0.1" 101828 + (sources."esrecurse-4.3.0" // { 101829 + dependencies = [ 101830 + sources."estraverse-5.2.0" 101831 + ]; 101832 + }) 101833 + sources."estraverse-4.3.0" 101834 + sources."esutils-2.0.3" 101835 + sources."etag-1.8.1" 101836 + sources."eventemitter3-4.0.7" 101837 + sources."events-3.3.0" 101838 + sources."eventsource-1.1.0" 101839 + sources."evp_bytestokey-1.0.3" 101840 + sources."execa-0.7.0" 101841 + (sources."expand-brackets-2.1.4" // { 101842 + dependencies = [ 101843 + sources."debug-2.6.9" 101844 + sources."define-property-0.2.5" 101845 + sources."extend-shallow-2.0.1" 101846 + (sources."is-accessor-descriptor-0.1.6" // { 101847 + dependencies = [ 101848 + sources."kind-of-3.2.2" 101849 + ]; 101850 + }) 101851 + (sources."is-data-descriptor-0.1.4" // { 101852 + dependencies = [ 101853 + sources."kind-of-3.2.2" 101854 + ]; 101855 + }) 101856 + sources."is-descriptor-0.1.6" 101857 + sources."kind-of-5.1.0" 101858 + sources."ms-2.0.0" 101859 + ]; 101860 + }) 101861 + (sources."express-4.17.1" // { 101862 + dependencies = [ 101863 + sources."cookie-0.4.0" 101864 + sources."debug-2.6.9" 101865 + sources."ms-2.0.0" 101866 + sources."path-to-regexp-0.1.7" 101867 + sources."range-parser-1.2.1" 101868 + ]; 101869 + }) 101870 + sources."ext-list-2.2.2" 101871 + sources."ext-name-5.0.0" 101872 + (sources."extend-shallow-3.0.2" // { 101873 + dependencies = [ 101874 + sources."is-extendable-1.0.1" 101875 + ]; 101876 + }) 101877 + sources."external-editor-3.1.0" 101878 + (sources."extglob-2.0.4" // { 101879 + dependencies = [ 101880 + sources."define-property-1.0.0" 101881 + sources."extend-shallow-2.0.1" 101882 + ]; 101883 + }) 101884 + (sources."extract-css-chunks-webpack-plugin-4.9.0" // { 101885 + dependencies = [ 101886 + sources."loader-utils-2.0.0" 101887 + sources."normalize-url-1.9.1" 101888 + sources."prepend-http-1.0.4" 101889 + sources."query-string-4.3.4" 101890 + sources."schema-utils-1.0.0" 101891 + ]; 101892 + }) 101893 + sources."fast-deep-equal-3.1.3" 101894 + sources."fast-json-stable-stringify-2.1.0" 101895 + (sources."fast-url-parser-1.1.3" // { 101896 + dependencies = [ 101897 + sources."punycode-1.4.1" 101898 + ]; 101899 + }) 101900 + sources."faye-websocket-0.11.3" 101901 + sources."fd-slicer-1.1.0" 101902 + sources."figgy-pudding-3.5.2" 101903 + sources."figures-2.0.0" 101904 + (sources."file-loader-3.0.1" // { 101905 + dependencies = [ 101906 + sources."schema-utils-1.0.0" 101907 + ]; 101908 + }) 101909 + sources."file-type-8.1.0" 101910 + sources."file-uri-to-path-1.0.0" 101911 + sources."filename-reserved-regex-2.0.0" 101912 + sources."filenamify-2.1.0" 101913 + sources."filesize-3.6.1" 101914 + sources."fill-range-7.0.1" 101915 + (sources."finalhandler-1.1.2" // { 101916 + dependencies = [ 101917 + sources."debug-2.6.9" 101918 + sources."ms-2.0.0" 101919 + ]; 101920 + }) 101921 + sources."find-cache-dir-2.1.0" 101922 + sources."find-up-3.0.0" 101923 + sources."flush-write-stream-1.1.1" 101924 + sources."follow-redirects-1.13.3" 101925 + sources."for-in-1.0.2" 101926 + sources."forwarded-0.1.2" 101927 + sources."fragment-cache-0.2.1" 101928 + sources."fresh-0.5.2" 101929 + sources."from2-2.3.0" 101930 + sources."fs-constants-1.0.0" 101931 + sources."fs-extra-7.0.1" 101932 + sources."fs-readdir-recursive-1.1.0" 101933 + sources."fs-write-stream-atomic-1.0.10" 101934 + sources."fs.realpath-1.0.0" 101935 + sources."fsevents-2.3.2" 101936 + sources."function-bind-1.1.1" 101937 + sources."gensync-1.0.0-beta.2" 101938 + sources."get-caller-file-2.0.5" 101939 + sources."get-intrinsic-1.1.1" 101940 + sources."get-proxy-2.1.0" 101941 + sources."get-stream-3.0.0" 101942 + sources."get-value-2.0.6" 101943 + sources."git-clone-0.1.0" 101944 + sources."git-promise-1.0.0" 101945 + sources."glob-7.1.6" 101946 + sources."glob-parent-5.1.2" 101947 + sources."globals-11.12.0" 101948 + (sources."globby-6.1.0" // { 101949 + dependencies = [ 101950 + sources."pify-2.3.0" 101951 + ]; 101952 + }) 101953 + (sources."got-8.3.2" // { 101954 + dependencies = [ 101955 + sources."pify-3.0.0" 101956 + ]; 101957 + }) 101958 + sources."graceful-fs-4.2.6" 101959 + sources."gud-1.0.0" 101960 + sources."gunzip-maybe-1.4.2" 101961 + sources."gzip-size-5.1.1" 101962 + sources."handle-thing-2.0.1" 101963 + sources."has-1.0.3" 101964 + sources."has-bigints-1.0.1" 101965 + (sources."has-binary2-1.0.3" // { 101966 + dependencies = [ 101967 + sources."isarray-2.0.1" 101968 + ]; 101969 + }) 101970 + sources."has-cors-1.1.0" 101971 + sources."has-flag-3.0.0" 101972 + sources."has-symbol-support-x-1.4.2" 101973 + sources."has-symbols-1.0.2" 101974 + sources."has-to-string-tag-x-1.4.1" 101975 + sources."has-value-1.0.0" 101976 + (sources."has-values-1.0.0" // { 101977 + dependencies = [ 101978 + (sources."is-number-3.0.0" // { 101979 + dependencies = [ 101980 + sources."kind-of-3.2.2" 101981 + ]; 101982 + }) 101983 + sources."kind-of-4.0.0" 101984 + ]; 101985 + }) 101986 + (sources."hash-base-3.1.0" // { 101987 + dependencies = [ 101988 + sources."readable-stream-3.6.0" 101989 + sources."safe-buffer-5.2.1" 101990 + ]; 101991 + }) 101992 + sources."hash.js-1.1.7" 101993 + sources."he-1.2.0" 101994 + sources."hex-color-regex-1.1.0" 101995 + sources."hmac-drbg-1.0.1" 101996 + sources."hoist-non-react-statics-3.3.2" 101997 + sources."hoopy-0.1.4" 101998 + sources."hpack.js-2.1.6" 101999 + sources."hsl-regex-1.0.0" 102000 + sources."hsla-regex-1.0.0" 102001 + sources."html-entities-1.4.0" 102002 + (sources."html-minifier-3.5.21" // { 102003 + dependencies = [ 102004 + sources."commander-2.17.1" 102005 + ]; 102006 + }) 102007 + (sources."html-webpack-plugin-3.2.0" // { 102008 + dependencies = [ 102009 + sources."big.js-3.2.0" 102010 + sources."emojis-list-2.1.0" 102011 + sources."json5-0.5.1" 102012 + sources."loader-utils-0.2.17" 102013 + ]; 102014 + }) 102015 + (sources."htmlparser2-3.10.1" // { 102016 + dependencies = [ 102017 + sources."entities-1.1.2" 102018 + sources."readable-stream-3.6.0" 102019 + ]; 102020 + }) 102021 + sources."http-cache-semantics-3.8.1" 102022 + sources."http-deceiver-1.2.7" 102023 + (sources."http-errors-1.7.2" // { 102024 + dependencies = [ 102025 + sources."inherits-2.0.3" 102026 + ]; 102027 + }) 102028 + sources."http-parser-js-0.5.3" 102029 + sources."http-proxy-1.18.1" 102030 + sources."http-proxy-middleware-0.19.1" 102031 + sources."https-browserify-1.0.0" 102032 + sources."iconv-lite-0.4.24" 102033 + sources."icss-replace-symbols-1.1.0" 102034 + sources."icss-utils-4.1.1" 102035 + sources."ieee754-1.2.1" 102036 + sources."iferr-0.1.5" 102037 + sources."import-cwd-2.1.0" 102038 + (sources."import-fresh-3.3.0" // { 102039 + dependencies = [ 102040 + sources."resolve-from-4.0.0" 102041 + ]; 102042 + }) 102043 + (sources."import-from-2.1.0" // { 102044 + dependencies = [ 102045 + sources."resolve-from-3.0.0" 102046 + ]; 102047 + }) 102048 + sources."import-local-2.0.0" 102049 + sources."imurmurhash-0.1.4" 102050 + sources."indexes-of-1.0.1" 102051 + sources."indexof-0.0.1" 102052 + sources."infer-owner-1.0.4" 102053 + sources."inflight-1.0.6" 102054 + sources."inherits-2.0.4" 102055 + sources."ini-1.3.8" 102056 + sources."inquirer-6.5.2" 102057 + (sources."inquirer-autocomplete-prompt-1.3.0" // { 102058 + dependencies = [ 102059 + sources."ansi-escapes-4.3.2" 102060 + sources."ansi-styles-4.3.0" 102061 + sources."chalk-4.1.0" 102062 + sources."color-convert-2.0.1" 102063 + sources."color-name-1.1.4" 102064 + sources."figures-3.2.0" 102065 + sources."has-flag-4.0.0" 102066 + sources."supports-color-7.2.0" 102067 + ]; 102068 + }) 102069 + sources."internal-ip-4.3.0" 102070 + sources."intersection-observer-0.7.0" 102071 + sources."into-stream-3.1.0" 102072 + sources."invariant-2.2.4" 102073 + sources."ip-1.1.5" 102074 + sources."ip-regex-2.1.0" 102075 + sources."ipaddr.js-1.9.1" 102076 + sources."is-absolute-url-2.1.0" 102077 + sources."is-accessor-descriptor-1.0.0" 102078 + sources."is-arguments-1.1.0" 102079 + sources."is-arrayish-0.2.1" 102080 + sources."is-bigint-1.0.1" 102081 + sources."is-binary-path-2.1.0" 102082 + sources."is-boolean-object-1.1.0" 102083 + sources."is-buffer-1.1.6" 102084 + sources."is-callable-1.2.3" 102085 + sources."is-color-stop-1.1.0" 102086 + sources."is-core-module-2.2.0" 102087 + sources."is-data-descriptor-1.0.0" 102088 + sources."is-date-object-1.0.2" 102089 + sources."is-deflate-1.0.0" 102090 + sources."is-descriptor-1.0.2" 102091 + sources."is-directory-0.3.1" 102092 + sources."is-extendable-0.1.1" 102093 + sources."is-extglob-2.1.1" 102094 + sources."is-fullwidth-code-point-2.0.0" 102095 + sources."is-glob-4.0.1" 102096 + sources."is-gzip-1.0.0" 102097 + sources."is-natural-number-4.0.1" 102098 + sources."is-negative-zero-2.0.1" 102099 + sources."is-number-7.0.0" 102100 + sources."is-number-object-1.0.4" 102101 + sources."is-obj-2.0.0" 102102 + sources."is-object-1.0.2" 102103 + sources."is-path-cwd-2.2.0" 102104 + sources."is-path-in-cwd-2.1.0" 102105 + sources."is-path-inside-2.1.0" 102106 + sources."is-plain-obj-1.1.0" 102107 + sources."is-plain-object-2.0.4" 102108 + sources."is-regex-1.1.2" 102109 + sources."is-resolvable-1.1.0" 102110 + sources."is-retry-allowed-1.2.0" 102111 + sources."is-stream-1.1.0" 102112 + sources."is-string-1.0.5" 102113 + sources."is-symbol-1.0.3" 102114 + sources."is-windows-1.0.2" 102115 + sources."is-wsl-1.1.0" 102116 + sources."isarray-1.0.0" 102117 + sources."isexe-2.0.0" 102118 + sources."isobject-3.0.1" 102119 + sources."isurl-1.0.0" 102120 + sources."js-tokens-4.0.0" 102121 + sources."js-yaml-3.14.1" 102122 + sources."jsesc-2.5.2" 102123 + sources."json-buffer-3.0.0" 102124 + sources."json-parse-better-errors-1.0.2" 102125 + sources."json-parse-even-better-errors-2.3.1" 102126 + sources."json-schema-traverse-0.4.1" 102127 + sources."json3-3.3.3" 102128 + sources."json5-2.2.0" 102129 + sources."jsonfile-4.0.0" 102130 + sources."keyv-3.0.0" 102131 + sources."killable-1.0.1" 102132 + sources."kind-of-6.0.3" 102133 + sources."last-call-webpack-plugin-3.0.0" 102134 + sources."lines-and-columns-1.1.6" 102135 + sources."loader-runner-2.4.0" 102136 + (sources."loader-utils-1.4.0" // { 102137 + dependencies = [ 102138 + sources."json5-1.0.1" 102139 + ]; 102140 + }) 102141 + sources."locate-path-3.0.0" 102142 + sources."lodash-4.17.21" 102143 + sources."lodash.debounce-4.0.8" 102144 + sources."lodash.memoize-4.1.2" 102145 + sources."lodash.uniq-4.5.0" 102146 + sources."loglevel-1.7.1" 102147 + sources."loose-envify-1.4.0" 102148 + sources."lower-case-1.1.4" 102149 + sources."lowercase-keys-1.0.1" 102150 + sources."lru-cache-4.1.5" 102151 + sources."make-dir-2.1.0" 102152 + sources."map-cache-0.2.2" 102153 + sources."map-visit-1.0.0" 102154 + sources."match-sorter-3.1.1" 102155 + sources."md5.js-1.3.5" 102156 + sources."mdn-data-2.0.4" 102157 + sources."media-typer-0.3.0" 102158 + sources."memory-fs-0.4.1" 102159 + sources."merge-descriptors-1.0.1" 102160 + sources."methods-1.1.2" 102161 + (sources."micromatch-3.1.10" // { 102162 + dependencies = [ 102163 + (sources."braces-2.3.2" // { 102164 + dependencies = [ 102165 + sources."extend-shallow-2.0.1" 102166 + ]; 102167 + }) 102168 + (sources."fill-range-4.0.0" // { 102169 + dependencies = [ 102170 + sources."extend-shallow-2.0.1" 102171 + ]; 102172 + }) 102173 + (sources."is-number-3.0.0" // { 102174 + dependencies = [ 102175 + sources."kind-of-3.2.2" 102176 + ]; 102177 + }) 102178 + sources."to-regex-range-2.1.1" 102179 + ]; 102180 + }) 102181 + (sources."miller-rabin-4.0.1" // { 102182 + dependencies = [ 102183 + sources."bn.js-4.12.0" 102184 + ]; 102185 + }) 102186 + sources."mime-2.5.2" 102187 + sources."mime-db-1.47.0" 102188 + sources."mime-types-2.1.30" 102189 + sources."mimic-fn-1.2.0" 102190 + sources."mimic-response-1.0.1" 102191 + sources."minimalistic-assert-1.0.1" 102192 + sources."minimalistic-crypto-utils-1.0.1" 102193 + sources."minimatch-3.0.4" 102194 + sources."minimist-1.2.5" 102195 + (sources."mississippi-3.0.0" // { 102196 + dependencies = [ 102197 + sources."pump-3.0.0" 102198 + ]; 102199 + }) 102200 + (sources."mixin-deep-1.3.2" // { 102201 + dependencies = [ 102202 + sources."is-extendable-1.0.1" 102203 + ]; 102204 + }) 102205 + sources."mkdirp-0.5.5" 102206 + sources."mkdirp-classic-0.5.3" 102207 + sources."move-concurrently-1.0.1" 102208 + sources."ms-2.1.2" 102209 + sources."multicast-dns-6.2.3" 102210 + sources."multicast-dns-service-types-1.1.0" 102211 + sources."mutation-observer-1.0.3" 102212 + sources."mute-stream-0.0.7" 102213 + sources."nan-2.14.2" 102214 + sources."nanomatch-1.2.13" 102215 + sources."negotiator-0.6.2" 102216 + sources."neo-async-2.6.2" 102217 + sources."nice-try-1.0.5" 102218 + sources."no-case-2.3.2" 102219 + sources."node-forge-0.10.0" 102220 + (sources."node-libs-browser-2.2.1" // { 102221 + dependencies = [ 102222 + sources."browserify-zlib-0.2.0" 102223 + sources."buffer-4.9.2" 102224 + sources."pako-1.0.11" 102225 + sources."punycode-1.4.1" 102226 + ]; 102227 + }) 102228 + sources."node-modules-regexp-1.0.0" 102229 + sources."node-releases-1.1.71" 102230 + sources."normalize-path-3.0.0" 102231 + sources."normalize-range-0.1.2" 102232 + (sources."normalize-url-2.0.1" // { 102233 + dependencies = [ 102234 + sources."sort-keys-2.0.0" 102235 + ]; 102236 + }) 102237 + (sources."npm-conf-1.1.3" // { 102238 + dependencies = [ 102239 + sources."pify-3.0.0" 102240 + ]; 102241 + }) 102242 + sources."npm-run-path-2.0.2" 102243 + sources."nth-check-1.0.2" 102244 + sources."num2fraction-1.2.2" 102245 + sources."object-assign-4.1.1" 102246 + (sources."object-copy-0.1.0" // { 102247 + dependencies = [ 102248 + sources."define-property-0.2.5" 102249 + sources."is-accessor-descriptor-0.1.6" 102250 + sources."is-data-descriptor-0.1.4" 102251 + (sources."is-descriptor-0.1.6" // { 102252 + dependencies = [ 102253 + sources."kind-of-5.1.0" 102254 + ]; 102255 + }) 102256 + sources."kind-of-3.2.2" 102257 + ]; 102258 + }) 102259 + sources."object-inspect-1.10.2" 102260 + sources."object-is-1.1.5" 102261 + sources."object-keys-1.1.1" 102262 + sources."object-visit-1.0.1" 102263 + sources."object.assign-4.1.2" 102264 + sources."object.getownpropertydescriptors-2.1.2" 102265 + sources."object.pick-1.3.0" 102266 + sources."object.values-1.1.3" 102267 + sources."obuf-1.1.2" 102268 + sources."on-finished-2.3.0" 102269 + sources."on-headers-1.0.2" 102270 + sources."once-1.4.0" 102271 + sources."onetime-2.0.1" 102272 + sources."opener-1.5.2" 102273 + sources."opn-5.5.0" 102274 + sources."optimize-css-assets-webpack-plugin-5.0.4" 102275 + sources."original-1.0.2" 102276 + sources."os-browserify-0.3.0" 102277 + sources."os-tmpdir-1.0.2" 102278 + sources."p-cancelable-0.4.1" 102279 + sources."p-event-2.3.1" 102280 + sources."p-finally-1.0.0" 102281 + sources."p-is-promise-1.1.0" 102282 + sources."p-limit-2.3.0" 102283 + sources."p-locate-3.0.0" 102284 + sources."p-map-2.1.0" 102285 + sources."p-retry-3.0.1" 102286 + sources."p-timeout-2.0.1" 102287 + sources."p-try-2.2.0" 102288 + sources."pako-0.2.9" 102289 + sources."parallel-transform-1.2.0" 102290 + sources."param-case-2.1.1" 102291 + sources."parent-module-1.0.1" 102292 + sources."parse-asn1-5.1.6" 102293 + sources."parse-json-5.2.0" 102294 + sources."parseqs-0.0.6" 102295 + sources."parseuri-0.0.6" 102296 + sources."parseurl-1.3.3" 102297 + sources."pascalcase-0.1.1" 102298 + sources."path-browserify-0.0.1" 102299 + sources."path-dirname-1.0.2" 102300 + sources."path-exists-3.0.0" 102301 + sources."path-is-absolute-1.0.1" 102302 + sources."path-is-inside-1.0.2" 102303 + sources."path-key-2.0.1" 102304 + sources."path-parse-1.0.6" 102305 + sources."path-to-regexp-2.2.1" 102306 + sources."path-type-4.0.0" 102307 + sources."pbkdf2-3.1.2" 102308 + sources."peek-stream-1.1.3" 102309 + sources."pend-1.2.0" 102310 + sources."performance-now-2.1.0" 102311 + sources."picomatch-2.2.3" 102312 + sources."pify-4.0.1" 102313 + sources."pinkie-2.0.4" 102314 + sources."pinkie-promise-2.0.1" 102315 + sources."pirates-4.0.1" 102316 + sources."pkg-dir-3.0.0" 102317 + (sources."portfinder-1.0.28" // { 102318 + dependencies = [ 102319 + sources."debug-3.2.7" 102320 + ]; 102321 + }) 102322 + sources."posix-character-classes-0.1.1" 102323 + (sources."postcss-7.0.35" // { 102324 + dependencies = [ 102325 + sources."source-map-0.6.1" 102326 + ]; 102327 + }) 102328 + sources."postcss-calc-7.0.5" 102329 + (sources."postcss-colormin-4.0.3" // { 102330 + dependencies = [ 102331 + sources."postcss-value-parser-3.3.1" 102332 + ]; 102333 + }) 102334 + (sources."postcss-convert-values-4.0.1" // { 102335 + dependencies = [ 102336 + sources."postcss-value-parser-3.3.1" 102337 + ]; 102338 + }) 102339 + sources."postcss-discard-comments-4.0.2" 102340 + sources."postcss-discard-duplicates-4.0.2" 102341 + sources."postcss-discard-empty-4.0.1" 102342 + sources."postcss-discard-overridden-4.0.1" 102343 + sources."postcss-flexbugs-fixes-4.2.1" 102344 + (sources."postcss-load-config-2.1.2" // { 102345 + dependencies = [ 102346 + sources."cosmiconfig-5.2.1" 102347 + sources."import-fresh-2.0.0" 102348 + sources."parse-json-4.0.0" 102349 + sources."resolve-from-3.0.0" 102350 + ]; 102351 + }) 102352 + (sources."postcss-loader-3.0.0" // { 102353 + dependencies = [ 102354 + sources."schema-utils-1.0.0" 102355 + ]; 102356 + }) 102357 + (sources."postcss-merge-longhand-4.0.11" // { 102358 + dependencies = [ 102359 + sources."postcss-value-parser-3.3.1" 102360 + ]; 102361 + }) 102362 + (sources."postcss-merge-rules-4.0.3" // { 102363 + dependencies = [ 102364 + sources."postcss-selector-parser-3.1.2" 102365 + ]; 102366 + }) 102367 + (sources."postcss-minify-font-values-4.0.2" // { 102368 + dependencies = [ 102369 + sources."postcss-value-parser-3.3.1" 102370 + ]; 102371 + }) 102372 + (sources."postcss-minify-gradients-4.0.2" // { 102373 + dependencies = [ 102374 + sources."postcss-value-parser-3.3.1" 102375 + ]; 102376 + }) 102377 + (sources."postcss-minify-params-4.0.2" // { 102378 + dependencies = [ 102379 + sources."postcss-value-parser-3.3.1" 102380 + ]; 102381 + }) 102382 + (sources."postcss-minify-selectors-4.0.2" // { 102383 + dependencies = [ 102384 + sources."postcss-selector-parser-3.1.2" 102385 + ]; 102386 + }) 102387 + sources."postcss-modules-extract-imports-2.0.0" 102388 + (sources."postcss-modules-local-by-default-2.0.6" // { 102389 + dependencies = [ 102390 + sources."postcss-value-parser-3.3.1" 102391 + ]; 102392 + }) 102393 + sources."postcss-modules-scope-2.2.0" 102394 + sources."postcss-modules-values-2.0.0" 102395 + sources."postcss-normalize-charset-4.0.1" 102396 + (sources."postcss-normalize-display-values-4.0.2" // { 102397 + dependencies = [ 102398 + sources."postcss-value-parser-3.3.1" 102399 + ]; 102400 + }) 102401 + (sources."postcss-normalize-positions-4.0.2" // { 102402 + dependencies = [ 102403 + sources."postcss-value-parser-3.3.1" 102404 + ]; 102405 + }) 102406 + (sources."postcss-normalize-repeat-style-4.0.2" // { 102407 + dependencies = [ 102408 + sources."postcss-value-parser-3.3.1" 102409 + ]; 102410 + }) 102411 + (sources."postcss-normalize-string-4.0.2" // { 102412 + dependencies = [ 102413 + sources."postcss-value-parser-3.3.1" 102414 + ]; 102415 + }) 102416 + (sources."postcss-normalize-timing-functions-4.0.2" // { 102417 + dependencies = [ 102418 + sources."postcss-value-parser-3.3.1" 102419 + ]; 102420 + }) 102421 + (sources."postcss-normalize-unicode-4.0.1" // { 102422 + dependencies = [ 102423 + sources."postcss-value-parser-3.3.1" 102424 + ]; 102425 + }) 102426 + (sources."postcss-normalize-url-4.0.1" // { 102427 + dependencies = [ 102428 + sources."normalize-url-3.3.0" 102429 + sources."postcss-value-parser-3.3.1" 102430 + ]; 102431 + }) 102432 + (sources."postcss-normalize-whitespace-4.0.2" // { 102433 + dependencies = [ 102434 + sources."postcss-value-parser-3.3.1" 102435 + ]; 102436 + }) 102437 + (sources."postcss-ordered-values-4.1.2" // { 102438 + dependencies = [ 102439 + sources."postcss-value-parser-3.3.1" 102440 + ]; 102441 + }) 102442 + sources."postcss-reduce-initial-4.0.3" 102443 + (sources."postcss-reduce-transforms-4.0.2" // { 102444 + dependencies = [ 102445 + sources."postcss-value-parser-3.3.1" 102446 + ]; 102447 + }) 102448 + sources."postcss-selector-parser-6.0.4" 102449 + (sources."postcss-svgo-4.0.3" // { 102450 + dependencies = [ 102451 + sources."postcss-value-parser-3.3.1" 102452 + ]; 102453 + }) 102454 + sources."postcss-unique-selectors-4.0.1" 102455 + sources."postcss-value-parser-4.1.0" 102456 + sources."prepend-http-2.0.0" 102457 + sources."pretty-error-2.1.2" 102458 + sources."process-0.11.10" 102459 + sources."process-nextick-args-2.0.1" 102460 + sources."progress-2.0.3" 102461 + sources."promise-inflight-1.0.1" 102462 + sources."prop-types-15.7.2" 102463 + sources."proto-list-1.2.4" 102464 + sources."proxy-addr-2.0.6" 102465 + sources."prr-1.0.1" 102466 + sources."pseudomap-1.0.2" 102467 + (sources."public-encrypt-4.0.3" // { 102468 + dependencies = [ 102469 + sources."bn.js-4.12.0" 102470 + ]; 102471 + }) 102472 + sources."pump-2.0.1" 102473 + sources."pumpify-1.5.1" 102474 + sources."punycode-2.1.1" 102475 + sources."q-1.5.1" 102476 + sources."qs-6.7.0" 102477 + sources."query-string-5.1.1" 102478 + sources."querystring-0.2.0" 102479 + sources."querystring-es3-0.2.1" 102480 + sources."querystringify-2.2.0" 102481 + sources."raf-3.4.1" 102482 + sources."randombytes-2.1.0" 102483 + sources."randomfill-1.0.4" 102484 + sources."range-parser-1.2.0" 102485 + (sources."raw-body-2.4.0" // { 102486 + dependencies = [ 102487 + sources."bytes-3.1.0" 102488 + ]; 102489 + }) 102490 + sources."raw-loader-3.1.0" 102491 + sources."rc-1.2.8" 102492 + sources."react-fast-compare-3.2.0" 102493 + sources."react-helmet-6.1.0" 102494 + sources."react-is-16.13.1" 102495 + sources."react-lifecycles-compat-3.0.4" 102496 + sources."react-side-effect-2.1.1" 102497 + sources."react-universal-component-4.5.0" 102498 + sources."readable-stream-2.3.7" 102499 + sources."readdirp-3.5.0" 102500 + sources."regenerate-1.4.2" 102501 + sources."regenerate-unicode-properties-8.2.0" 102502 + sources."regenerator-runtime-0.13.8" 102503 + sources."regenerator-transform-0.14.5" 102504 + sources."regex-not-1.0.2" 102505 + sources."regexp.prototype.flags-1.3.1" 102506 + sources."regexpu-core-4.7.1" 102507 + sources."registry-auth-token-3.3.2" 102508 + sources."registry-url-3.1.0" 102509 + sources."regjsgen-0.5.2" 102510 + (sources."regjsparser-0.6.9" // { 102511 + dependencies = [ 102512 + sources."jsesc-0.5.0" 102513 + ]; 102514 + }) 102515 + sources."relateurl-0.2.7" 102516 + sources."remove-trailing-separator-1.1.0" 102517 + (sources."renderkid-2.0.5" // { 102518 + dependencies = [ 102519 + sources."ansi-regex-2.1.1" 102520 + sources."strip-ansi-3.0.1" 102521 + ]; 102522 + }) 102523 + sources."repeat-element-1.1.4" 102524 + sources."repeat-string-1.6.1" 102525 + sources."require-directory-2.1.1" 102526 + sources."require-main-filename-2.0.0" 102527 + sources."requires-port-1.0.0" 102528 + sources."resolve-1.20.0" 102529 + (sources."resolve-cwd-2.0.0" // { 102530 + dependencies = [ 102531 + sources."resolve-from-3.0.0" 102532 + ]; 102533 + }) 102534 + sources."resolve-from-5.0.0" 102535 + sources."resolve-url-0.2.1" 102536 + sources."responselike-1.0.2" 102537 + sources."restore-cursor-2.0.0" 102538 + sources."ret-0.1.15" 102539 + sources."retry-0.12.0" 102540 + sources."rgb-regex-1.0.1" 102541 + sources."rgba-regex-1.0.0" 102542 + sources."rimraf-2.7.1" 102543 + sources."ripemd160-2.0.2" 102544 + sources."run-async-2.4.1" 102545 + sources."run-queue-1.0.3" 102546 + sources."rxjs-6.6.7" 102547 + sources."safe-buffer-5.1.2" 102548 + sources."safe-regex-1.1.0" 102549 + sources."safer-buffer-2.1.2" 102550 + sources."sax-1.2.4" 102551 + sources."schema-utils-2.7.1" 102552 + (sources."seek-bzip-1.0.6" // { 102553 + dependencies = [ 102554 + sources."commander-2.20.3" 102555 + ]; 102556 + }) 102557 + sources."select-hose-2.0.0" 102558 + sources."selfsigned-1.10.8" 102559 + sources."semver-5.7.1" 102560 + (sources."send-0.17.1" // { 102561 + dependencies = [ 102562 + (sources."debug-2.6.9" // { 102563 + dependencies = [ 102564 + sources."ms-2.0.0" 102565 + ]; 102566 + }) 102567 + sources."mime-1.6.0" 102568 + sources."ms-2.1.1" 102569 + sources."range-parser-1.2.1" 102570 + ]; 102571 + }) 102572 + sources."serialize-javascript-4.0.0" 102573 + (sources."serve-11.3.2" // { 102574 + dependencies = [ 102575 + sources."ajv-6.5.3" 102576 + sources."chalk-2.4.1" 102577 + sources."fast-deep-equal-2.0.1" 102578 + sources."supports-color-5.5.0" 102579 + ]; 102580 + }) 102581 + (sources."serve-handler-6.1.3" // { 102582 + dependencies = [ 102583 + sources."content-disposition-0.5.2" 102584 + sources."mime-db-1.33.0" 102585 + sources."mime-types-2.1.18" 102586 + ]; 102587 + }) 102588 + (sources."serve-index-1.9.1" // { 102589 + dependencies = [ 102590 + sources."debug-2.6.9" 102591 + sources."http-errors-1.6.3" 102592 + sources."inherits-2.0.3" 102593 + sources."ms-2.0.0" 102594 + sources."setprototypeof-1.1.0" 102595 + ]; 102596 + }) 102597 + sources."serve-static-1.14.1" 102598 + sources."set-blocking-2.0.0" 102599 + (sources."set-value-2.0.1" // { 102600 + dependencies = [ 102601 + sources."extend-shallow-2.0.1" 102602 + ]; 102603 + }) 102604 + sources."setimmediate-1.0.5" 102605 + sources."setprototypeof-1.1.1" 102606 + sources."sha.js-2.4.11" 102607 + sources."shebang-command-1.2.0" 102608 + sources."shebang-regex-1.0.0" 102609 + sources."shorthash-0.0.2" 102610 + sources."signal-exit-3.0.3" 102611 + (sources."simple-swizzle-0.2.2" // { 102612 + dependencies = [ 102613 + sources."is-arrayish-0.3.2" 102614 + ]; 102615 + }) 102616 + sources."slash-2.0.0" 102617 + (sources."snapdragon-0.8.2" // { 102618 + dependencies = [ 102619 + sources."debug-2.6.9" 102620 + sources."define-property-0.2.5" 102621 + sources."extend-shallow-2.0.1" 102622 + (sources."is-accessor-descriptor-0.1.6" // { 102623 + dependencies = [ 102624 + sources."kind-of-3.2.2" 102625 + ]; 102626 + }) 102627 + (sources."is-data-descriptor-0.1.4" // { 102628 + dependencies = [ 102629 + sources."kind-of-3.2.2" 102630 + ]; 102631 + }) 102632 + sources."is-descriptor-0.1.6" 102633 + sources."kind-of-5.1.0" 102634 + sources."ms-2.0.0" 102635 + ]; 102636 + }) 102637 + (sources."snapdragon-node-2.1.1" // { 102638 + dependencies = [ 102639 + sources."define-property-1.0.0" 102640 + ]; 102641 + }) 102642 + (sources."snapdragon-util-3.0.1" // { 102643 + dependencies = [ 102644 + sources."kind-of-3.2.2" 102645 + ]; 102646 + }) 102647 + (sources."socket.io-2.4.1" // { 102648 + dependencies = [ 102649 + sources."debug-4.1.1" 102650 + ]; 102651 + }) 102652 + sources."socket.io-adapter-1.1.2" 102653 + (sources."socket.io-client-2.4.0" // { 102654 + dependencies = [ 102655 + sources."component-emitter-1.3.0" 102656 + sources."debug-3.1.0" 102657 + sources."isarray-2.0.1" 102658 + sources."ms-2.0.0" 102659 + sources."socket.io-parser-3.3.2" 102660 + ]; 102661 + }) 102662 + (sources."socket.io-parser-3.4.1" // { 102663 + dependencies = [ 102664 + sources."debug-4.1.1" 102665 + sources."isarray-2.0.1" 102666 + ]; 102667 + }) 102668 + sources."sockjs-0.3.21" 102669 + (sources."sockjs-client-1.5.1" // { 102670 + dependencies = [ 102671 + sources."debug-3.2.7" 102672 + ]; 102673 + }) 102674 + sources."sort-keys-1.1.2" 102675 + sources."sort-keys-length-1.0.1" 102676 + sources."source-list-map-2.0.1" 102677 + sources."source-map-0.5.7" 102678 + sources."source-map-resolve-0.5.3" 102679 + (sources."source-map-support-0.5.19" // { 102680 + dependencies = [ 102681 + sources."source-map-0.6.1" 102682 + ]; 102683 + }) 102684 + sources."source-map-url-0.4.1" 102685 + sources."spdy-4.0.2" 102686 + (sources."spdy-transport-3.0.0" // { 102687 + dependencies = [ 102688 + sources."readable-stream-3.6.0" 102689 + ]; 102690 + }) 102691 + sources."split-string-3.1.0" 102692 + sources."sprintf-js-1.0.3" 102693 + sources."ssri-6.0.2" 102694 + sources."stable-0.1.8" 102695 + (sources."static-extend-0.1.2" // { 102696 + dependencies = [ 102697 + sources."define-property-0.2.5" 102698 + (sources."is-accessor-descriptor-0.1.6" // { 102699 + dependencies = [ 102700 + sources."kind-of-3.2.2" 102701 + ]; 102702 + }) 102703 + (sources."is-data-descriptor-0.1.4" // { 102704 + dependencies = [ 102705 + sources."kind-of-3.2.2" 102706 + ]; 102707 + }) 102708 + sources."is-descriptor-0.1.6" 102709 + sources."kind-of-5.1.0" 102710 + ]; 102711 + }) 102712 + sources."statuses-1.5.0" 102713 + sources."stream-browserify-2.0.2" 102714 + sources."stream-each-1.2.3" 102715 + sources."stream-http-2.8.3" 102716 + sources."stream-shift-1.0.1" 102717 + sources."strict-uri-encode-1.1.0" 102718 + (sources."string-width-2.1.1" // { 102719 + dependencies = [ 102720 + sources."strip-ansi-4.0.0" 102721 + ]; 102722 + }) 102723 + sources."string.prototype.trimend-1.0.4" 102724 + sources."string.prototype.trimstart-1.0.4" 102725 + sources."string_decoder-1.1.1" 102726 + (sources."strip-ansi-5.2.0" // { 102727 + dependencies = [ 102728 + sources."ansi-regex-4.1.0" 102729 + ]; 102730 + }) 102731 + sources."strip-dirs-2.1.0" 102732 + sources."strip-eof-1.0.0" 102733 + sources."strip-json-comments-2.0.1" 102734 + sources."strip-outer-1.0.1" 102735 + (sources."style-loader-0.23.1" // { 102736 + dependencies = [ 102737 + sources."schema-utils-1.0.0" 102738 + ]; 102739 + }) 102740 + (sources."stylehacks-4.0.3" // { 102741 + dependencies = [ 102742 + sources."postcss-selector-parser-3.1.2" 102743 + ]; 102744 + }) 102745 + sources."supports-color-6.1.0" 102746 + sources."svgo-1.3.2" 102747 + sources."swimmer-1.4.0" 102748 + sources."tapable-1.1.3" 102749 + (sources."tar-fs-2.1.1" // { 102750 + dependencies = [ 102751 + sources."bl-4.1.0" 102752 + sources."pump-3.0.0" 102753 + sources."readable-stream-3.6.0" 102754 + sources."tar-stream-2.2.0" 102755 + ]; 102756 + }) 102757 + sources."tar-stream-1.6.2" 102758 + sources."term-size-1.2.0" 102759 + (sources."terser-4.8.0" // { 102760 + dependencies = [ 102761 + sources."commander-2.20.3" 102762 + sources."source-map-0.6.1" 102763 + ]; 102764 + }) 102765 + (sources."terser-webpack-plugin-1.4.5" // { 102766 + dependencies = [ 102767 + sources."schema-utils-1.0.0" 102768 + sources."source-map-0.6.1" 102769 + ]; 102770 + }) 102771 + sources."through-2.3.8" 102772 + sources."through2-2.0.5" 102773 + sources."thunky-1.1.0" 102774 + sources."timed-out-4.0.1" 102775 + sources."timers-browserify-2.0.12" 102776 + sources."timsort-0.3.0" 102777 + sources."tmp-0.0.33" 102778 + sources."to-array-0.1.4" 102779 + sources."to-arraybuffer-1.0.1" 102780 + sources."to-buffer-1.1.1" 102781 + sources."to-fast-properties-2.0.0" 102782 + (sources."to-object-path-0.3.0" // { 102783 + dependencies = [ 102784 + sources."kind-of-3.2.2" 102785 + ]; 102786 + }) 102787 + sources."to-regex-3.0.2" 102788 + sources."to-regex-range-5.0.1" 102789 + sources."toidentifier-1.0.0" 102790 + sources."toposort-1.0.7" 102791 + sources."trim-repeated-1.0.0" 102792 + sources."tryer-1.0.1" 102793 + sources."tslib-1.14.1" 102794 + sources."tty-browserify-0.0.0" 102795 + sources."tunnel-agent-0.6.0" 102796 + sources."type-fest-0.21.3" 102797 + sources."type-is-1.6.18" 102798 + sources."typedarray-0.0.6" 102799 + (sources."uglify-js-3.4.10" // { 102800 + dependencies = [ 102801 + sources."commander-2.19.0" 102802 + sources."source-map-0.6.1" 102803 + ]; 102804 + }) 102805 + sources."unbox-primitive-1.0.1" 102806 + sources."unbzip2-stream-1.4.3" 102807 + sources."unicode-canonical-property-names-ecmascript-1.0.4" 102808 + sources."unicode-match-property-ecmascript-1.0.4" 102809 + sources."unicode-match-property-value-ecmascript-1.2.0" 102810 + sources."unicode-property-aliases-ecmascript-1.1.0" 102811 + sources."union-value-1.0.1" 102812 + sources."uniq-1.0.1" 102813 + sources."uniqs-2.0.0" 102814 + sources."unique-filename-1.1.1" 102815 + sources."unique-slug-2.0.2" 102816 + sources."universalify-0.1.2" 102817 + sources."unpipe-1.0.0" 102818 + sources."unquote-1.1.1" 102819 + (sources."unset-value-1.0.0" // { 102820 + dependencies = [ 102821 + (sources."has-value-0.3.1" // { 102822 + dependencies = [ 102823 + sources."isobject-2.1.0" 102824 + ]; 102825 + }) 102826 + sources."has-values-0.1.4" 102827 + ]; 102828 + }) 102829 + sources."upath-1.2.0" 102830 + sources."update-check-1.5.2" 102831 + sources."upper-case-1.1.3" 102832 + sources."uri-js-4.4.1" 102833 + sources."urix-0.1.0" 102834 + (sources."url-0.11.0" // { 102835 + dependencies = [ 102836 + sources."punycode-1.3.2" 102837 + ]; 102838 + }) 102839 + sources."url-loader-2.3.0" 102840 + sources."url-parse-1.5.1" 102841 + sources."url-parse-lax-3.0.0" 102842 + sources."url-to-options-1.0.1" 102843 + sources."use-3.1.1" 102844 + (sources."util-0.11.1" // { 102845 + dependencies = [ 102846 + sources."inherits-2.0.3" 102847 + ]; 102848 + }) 102849 + sources."util-deprecate-1.0.2" 102850 + sources."util.promisify-1.0.0" 102851 + sources."utila-0.4.0" 102852 + sources."utils-merge-1.0.1" 102853 + sources."uuid-3.4.0" 102854 + sources."vary-1.1.2" 102855 + sources."vendors-1.0.4" 102856 + sources."vm-browserify-1.1.2" 102857 + sources."warning-4.0.3" 102858 + sources."watchpack-1.7.5" 102859 + (sources."watchpack-chokidar2-2.0.1" // { 102860 + dependencies = [ 102861 + sources."anymatch-2.0.0" 102862 + sources."binary-extensions-1.13.1" 102863 + sources."braces-2.3.2" 102864 + sources."chokidar-2.1.8" 102865 + sources."extend-shallow-2.0.1" 102866 + sources."fill-range-4.0.0" 102867 + sources."fsevents-1.2.13" 102868 + sources."glob-parent-3.1.0" 102869 + sources."is-binary-path-1.0.1" 102870 + sources."is-glob-3.1.0" 102871 + sources."is-number-3.0.0" 102872 + sources."kind-of-3.2.2" 102873 + sources."normalize-path-2.1.1" 102874 + sources."readdirp-2.2.1" 102875 + sources."to-regex-range-2.1.1" 102876 + ]; 102877 + }) 102878 + sources."wbuf-1.7.3" 102879 + (sources."webpack-4.46.0" // { 102880 + dependencies = [ 102881 + sources."schema-utils-1.0.0" 102882 + ]; 102883 + }) 102884 + (sources."webpack-bundle-analyzer-3.9.0" // { 102885 + dependencies = [ 102886 + sources."acorn-7.4.1" 102887 + sources."commander-2.20.3" 102888 + sources."ws-6.2.1" 102889 + ]; 102890 + }) 102891 + (sources."webpack-dev-middleware-3.7.3" // { 102892 + dependencies = [ 102893 + sources."range-parser-1.2.1" 102894 + ]; 102895 + }) 102896 + (sources."webpack-dev-server-3.11.2" // { 102897 + dependencies = [ 102898 + sources."ansi-regex-2.1.1" 102899 + sources."anymatch-2.0.0" 102900 + sources."binary-extensions-1.13.1" 102901 + sources."braces-2.3.2" 102902 + sources."chokidar-2.1.8" 102903 + (sources."compression-1.7.4" // { 102904 + dependencies = [ 102905 + sources."debug-2.6.9" 102906 + ]; 102907 + }) 102908 + sources."extend-shallow-2.0.1" 102909 + sources."fill-range-4.0.0" 102910 + sources."fsevents-1.2.13" 102911 + sources."glob-parent-3.1.0" 102912 + sources."is-absolute-url-3.0.3" 102913 + sources."is-binary-path-1.0.1" 102914 + sources."is-glob-3.1.0" 102915 + sources."is-number-3.0.0" 102916 + sources."kind-of-3.2.2" 102917 + sources."ms-2.0.0" 102918 + sources."normalize-path-2.1.1" 102919 + sources."readdirp-2.2.1" 102920 + sources."schema-utils-1.0.0" 102921 + sources."semver-6.3.0" 102922 + sources."strip-ansi-3.0.1" 102923 + sources."to-regex-range-2.1.1" 102924 + sources."ws-6.2.1" 102925 + ]; 102926 + }) 102927 + sources."webpack-flush-chunks-2.0.3" 102928 + sources."webpack-log-2.0.0" 102929 + sources."webpack-node-externals-1.7.2" 102930 + (sources."webpack-sources-1.4.3" // { 102931 + dependencies = [ 102932 + sources."source-map-0.6.1" 102933 + ]; 102934 + }) 102935 + sources."websocket-driver-0.7.4" 102936 + sources."websocket-extensions-0.1.4" 102937 + sources."which-1.3.1" 102938 + sources."which-boxed-primitive-1.0.2" 102939 + sources."which-module-2.0.0" 102940 + sources."widest-line-2.0.1" 102941 + sources."worker-farm-1.7.0" 102942 + (sources."wrap-ansi-5.1.0" // { 102943 + dependencies = [ 102944 + sources."string-width-3.1.0" 102945 + ]; 102946 + }) 102947 + sources."wrappy-1.0.2" 102948 + sources."ws-7.4.5" 102949 + sources."xmlhttprequest-ssl-1.5.5" 102950 + sources."xtend-4.0.2" 102951 + sources."y18n-4.0.3" 102952 + sources."yallist-2.1.2" 102953 + sources."yaml-1.10.2" 102954 + (sources."yargs-13.3.2" // { 102955 + dependencies = [ 102956 + sources."string-width-3.1.0" 102957 + ]; 102958 + }) 102959 + sources."yargs-parser-13.1.2" 102960 + sources."yauzl-2.10.0" 102961 + sources."yeast-0.1.2" 102962 + ]; 102963 + buildInputs = globalBuildInputs; 102964 + meta = { 102965 + description = "A progressive static site generator for React"; 102966 + homepage = "https://github.com/react-static/react-static#readme"; 102967 + license = "MIT"; 102968 + }; 102969 + production = true; 102970 + bypassCache = true; 102971 + reconstructLock = true; 102972 + }; 100770 102973 react-tools = nodeEnv.buildNodePackage { 100771 102974 name = "react-tools"; 100772 102975 packageName = "react-tools"; ··· 100954 103157 sources."whatwg-url-8.5.0" 100955 103158 sources."word-wrap-1.2.3" 100956 103159 sources."wrap-ansi-7.0.0" 100957 - sources."ws-7.4.4" 103160 + sources."ws-7.4.5" 100958 103161 sources."xml-name-validator-3.0.0" 100959 103162 sources."xmlchars-2.2.0" 100960 103163 sources."y18n-5.0.8" ··· 101632 103835 ]; 101633 103836 }) 101634 103837 sources."cheerio-1.0.0-rc.6" 101635 - sources."cheerio-select-1.3.0" 103838 + sources."cheerio-select-1.4.0" 101636 103839 sources."chokidar-3.5.1" 101637 103840 sources."cliui-7.0.4" 101638 103841 sources."color-convert-1.9.3" ··· 101644 103847 sources."concat-map-0.0.1" 101645 103848 sources."core-util-is-1.0.2" 101646 103849 sources."cross-spawn-7.0.3" 101647 - sources."css-select-4.0.0" 103850 + sources."css-select-4.1.2" 101648 103851 sources."css-what-5.0.0" 101649 103852 sources."debug-4.3.2" 101650 103853 sources."decamelize-4.0.0" ··· 101657 103860 sources."doctrine-3.0.0" 101658 103861 sources."dom-serializer-1.3.1" 101659 103862 sources."domelementtype-2.2.0" 101660 - sources."domhandler-4.1.0" 101661 - sources."domutils-2.5.2" 103863 + sources."domhandler-4.2.0" 103864 + sources."domutils-2.6.0" 101662 103865 sources."duplexer2-0.1.4" 101663 103866 (sources."editorconfig-0.15.3" // { 101664 103867 dependencies = [ ··· 102098 104301 sass = nodeEnv.buildNodePackage { 102099 104302 name = "sass"; 102100 104303 packageName = "sass"; 102101 - version = "1.32.8"; 104304 + version = "1.32.10"; 102102 104305 src = fetchurl { 102103 - url = "https://registry.npmjs.org/sass/-/sass-1.32.8.tgz"; 102104 - sha512 = "Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ=="; 104306 + url = "https://registry.npmjs.org/sass/-/sass-1.32.10.tgz"; 104307 + sha512 = "Nx0pcWoonAkn7CRp0aE/hket1UP97GiR1IFw3kcjV3pnenhWgZEWUf0ZcfPOV2fK52fnOcK3JdC/YYZ9E47DTQ=="; 102105 104308 }; 102106 104309 dependencies = [ 102107 104310 sources."anymatch-3.1.2" ··· 102637 104840 sources."file-uri-to-path-1.0.0" 102638 104841 sources."filename-reserved-regex-2.0.0" 102639 104842 sources."filenamify-3.0.0" 102640 - sources."filesize-6.2.2" 104843 + sources."filesize-6.2.5" 102641 104844 sources."fill-range-7.0.1" 102642 104845 sources."find-requires-1.0.0" 102643 104846 sources."flat-5.0.2" ··· 103121 105324 }) 103122 105325 sources."wrappy-1.0.2" 103123 105326 sources."write-file-atomic-2.4.3" 103124 - sources."ws-7.4.4" 105327 + sources."ws-7.4.5" 103125 105328 sources."xml2js-0.4.19" 103126 105329 sources."xmlbuilder-9.0.7" 103127 105330 sources."xmlhttprequest-ssl-1.5.5" ··· 103771 105974 snyk = nodeEnv.buildNodePackage { 103772 105975 name = "snyk"; 103773 105976 packageName = "snyk"; 103774 - version = "1.543.0"; 105977 + version = "1.551.0"; 103775 105978 src = fetchurl { 103776 - url = "https://registry.npmjs.org/snyk/-/snyk-1.543.0.tgz"; 103777 - sha512 = "6PiGHbALrZGLrsgPgocxOUjFa8o2lWfoZiYLpFyFXOQmYP5mzV1Y9S6IoANxVXNmPpRTdwJamlWG1v6g0YSYhA=="; 105979 + url = "https://registry.npmjs.org/snyk/-/snyk-1.551.0.tgz"; 105980 + sha512 = "Z2fh6n/EGO/2ILLOeFvJpWAHSZjOtKDACtfK+Xm/ob+SoAOjEPGdGlFt0RmCUV/VGxfP1aRZ8zkxnj573OmPPA=="; 103778 105981 }; 103779 105982 dependencies = [ 103780 105983 sources."@arcanis/slice-ansi-1.0.2" ··· 103801 106004 }) 103802 106005 sources."@snyk/docker-registry-v2-client-1.13.9" 103803 106006 sources."@snyk/fast-glob-3.2.6-patch" 103804 - (sources."@snyk/fix-1.539.0" // { 106007 + (sources."@snyk/fix-1.547.0" // { 103805 106008 dependencies = [ 103806 106009 sources."chalk-4.1.0" 103807 106010 sources."strip-ansi-6.0.0" ··· 103823 106026 sources."tmp-0.2.1" 103824 106027 ]; 103825 106028 }) 103826 - (sources."@snyk/mix-parser-1.3.0" // { 106029 + (sources."@snyk/mix-parser-1.3.1" // { 103827 106030 dependencies = [ 103828 106031 sources."tslib-2.2.0" 103829 106032 ]; ··· 103839 106042 sources."tmp-0.1.0" 103840 106043 ]; 103841 106044 }) 103842 - (sources."@snyk/snyk-hex-plugin-1.1.1" // { 106045 + (sources."@snyk/snyk-hex-plugin-1.1.2" // { 103843 106046 dependencies = [ 103844 106047 sources."tslib-2.2.0" 103845 106048 ]; ··· 104526 106729 sources."socket.io-adapter-2.2.0" 104527 106730 sources."socket.io-parser-4.0.4" 104528 106731 sources."vary-1.1.2" 104529 - sources."ws-7.4.4" 106732 + sources."ws-7.4.5" 104530 106733 ]; 104531 106734 buildInputs = globalBuildInputs; 104532 106735 meta = { ··· 104885 107088 sources."errno-0.1.8" 104886 107089 (sources."es-abstract-1.18.0" // { 104887 107090 dependencies = [ 104888 - sources."object-inspect-1.9.0" 107091 + sources."object-inspect-1.10.2" 104889 107092 ]; 104890 107093 }) 104891 107094 (sources."es-get-iterator-1.1.2" // { ··· 105441 107644 sources."safe-regex-1.1.0" 105442 107645 sources."sanitize-filename-1.6.3" 105443 107646 sources."secret-handshake-1.1.20" 105444 - sources."secret-stack-6.3.2" 107647 + sources."secret-stack-6.4.0" 105445 107648 sources."semver-5.7.1" 105446 107649 sources."separator-escape-0.0.1" 105447 107650 (sources."set-value-2.0.1" // { ··· 105455 107658 sources."shellsubstitute-1.2.0" 105456 107659 (sources."side-channel-1.0.4" // { 105457 107660 dependencies = [ 105458 - sources."object-inspect-1.9.0" 107661 + sources."object-inspect-1.10.2" 105459 107662 ]; 105460 107663 }) 105461 107664 sources."signal-exit-3.0.3" ··· 105487 107690 ]; 105488 107691 }) 105489 107692 sources."snapdragon-util-3.0.1" 105490 - sources."socks-2.6.0" 107693 + sources."socks-2.6.1" 105491 107694 sources."sodium-browserify-1.3.0" 105492 107695 (sources."sodium-browserify-tweetnacl-0.2.6" // { 105493 107696 dependencies = [ ··· 105917 108120 dependencies = [ 105918 108121 sources."cookie-0.4.1" 105919 108122 sources."debug-4.1.1" 105920 - sources."ws-7.4.4" 108123 + sources."ws-7.4.5" 105921 108124 ]; 105922 108125 }) 105923 108126 (sources."engine.io-client-3.5.1" // { 105924 108127 dependencies = [ 105925 108128 sources."debug-3.1.0" 105926 108129 sources."ms-2.0.0" 105927 - sources."ws-7.4.4" 108130 + sources."ws-7.4.5" 105928 108131 ]; 105929 108132 }) 105930 108133 sources."engine.io-parser-2.2.1" ··· 106163 108366 sources."oauth-sign-0.8.2" 106164 108367 sources."object-assign-4.1.1" 106165 108368 sources."object-hash-0.3.0" 106166 - sources."object-inspect-1.9.0" 108369 + sources."object-inspect-1.10.2" 106167 108370 sources."on-finished-2.3.0" 106168 108371 sources."on-headers-1.0.2" 106169 108372 sources."once-1.4.0" ··· 106606 108809 sources."callsites-3.1.0" 106607 108810 sources."camelcase-5.3.1" 106608 108811 sources."camelcase-keys-6.2.2" 106609 - sources."caniuse-lite-1.0.30001208" 108812 + sources."caniuse-lite-1.0.30001209" 106610 108813 (sources."chalk-4.1.0" // { 106611 108814 dependencies = [ 106612 108815 sources."ansi-styles-4.3.0" ··· 106985 109188 sources."csso-4.2.0" 106986 109189 sources."dom-serializer-1.3.1" 106987 109190 sources."domelementtype-2.2.0" 106988 - sources."domhandler-4.1.0" 106989 - sources."domutils-2.5.2" 109191 + sources."domhandler-4.2.0" 109192 + sources."domutils-2.6.0" 106990 109193 sources."entities-2.2.0" 106991 109194 sources."has-flag-4.0.0" 106992 109195 sources."mdn-data-2.0.14" ··· 107388 109591 sources."kind-of-3.2.2" 107389 109592 ]; 107390 109593 }) 107391 - sources."object-inspect-1.9.0" 109594 + sources."object-inspect-1.10.2" 107392 109595 sources."object-visit-1.0.1" 107393 109596 sources."object.pick-1.3.0" 107394 109597 sources."on-finished-2.3.0" ··· 108714 110917 sources."is-regex-1.1.2" 108715 110918 sources."is-string-1.0.5" 108716 110919 sources."is-symbol-1.0.3" 108717 - sources."object-inspect-1.9.0" 110920 + sources."object-inspect-1.10.2" 108718 110921 sources."object-keys-1.1.1" 108719 110922 sources."object.assign-4.1.2" 108720 110923 sources."string.prototype.trimend-1.0.4" ··· 108821 111024 sources."is-regex-1.1.2" 108822 111025 sources."is-string-1.0.5" 108823 111026 sources."is-symbol-1.0.3" 108824 - sources."object-inspect-1.9.0" 111027 + sources."object-inspect-1.10.2" 108825 111028 sources."object-keys-1.1.1" 108826 111029 sources."object.assign-4.1.2" 108827 111030 sources."string.prototype.trimend-1.0.4" ··· 109313 111516 sources."wide-align-1.1.3" 109314 111517 sources."with-open-file-0.1.7" 109315 111518 sources."wrappy-1.0.2" 109316 - sources."ws-7.4.4" 111519 + sources."ws-7.4.5" 109317 111520 sources."xmlhttprequest-ssl-1.5.5" 109318 111521 sources."yallist-3.1.1" 109319 111522 sources."yarn-1.22.4" ··· 110025 112228 sources."on-headers-1.0.2" 110026 112229 sources."once-1.4.0" 110027 112230 sources."one-time-1.0.0" 110028 - sources."open-8.0.5" 112231 + sources."open-8.0.6" 110029 112232 sources."p-cancelable-1.1.0" 110030 112233 (sources."package-json-6.5.0" // { 110031 112234 dependencies = [ ··· 110123 112326 }) 110124 112327 sources."wrap-ansi-7.0.0" 110125 112328 sources."wrappy-1.0.2" 110126 - sources."ws-7.4.4" 112329 + sources."ws-7.4.5" 110127 112330 sources."y18n-5.0.8" 110128 112331 sources."yallist-2.1.2" 110129 112332 sources."yargs-16.2.0" ··· 110326 112529 vega-lite = nodeEnv.buildNodePackage { 110327 112530 name = "vega-lite"; 110328 112531 packageName = "vega-lite"; 110329 - version = "5.0.0"; 112532 + version = "5.1.0"; 110330 112533 src = fetchurl { 110331 - url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.0.0.tgz"; 110332 - sha512 = "CrMAy3D2E662qtShrOeGttwwthRxUOZUfdu39THyxkOfLNJBCLkNjfQpFekEidxwbtFTO1zMZzyFIP3AE2I8kQ=="; 112534 + url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.1.0.tgz"; 112535 + sha512 = "HEyf0iHnCNmWkWFIbEmMphcJwZpcBnfnU8v+Ojrndr7ihDueojHMOSikoyz/GNpdkai+QFxLboA6DDCTtFv9iQ=="; 110333 112536 }; 110334 112537 dependencies = [ 110335 112538 sources."@types/clone-2.1.0" ··· 110351 112554 sources."require-directory-2.1.1" 110352 112555 sources."string-width-4.2.2" 110353 112556 sources."strip-ansi-6.0.0" 110354 - sources."tslib-2.1.0" 112557 + sources."tslib-2.2.0" 110355 112558 sources."vega-event-selector-2.0.6" 110356 112559 sources."vega-expression-4.0.1" 110357 112560 sources."vega-util-1.16.1" ··· 110657 112860 ]; 110658 112861 }) 110659 112862 sources."cheerio-1.0.0-rc.6" 110660 - sources."cheerio-select-1.3.0" 112863 + sources."cheerio-select-1.4.0" 110661 112864 sources."chokidar-3.3.0" 110662 112865 sources."chownr-1.1.4" 110663 112866 sources."chrome-trace-event-1.0.3" ··· 110715 112918 sources."create-hmac-1.1.7" 110716 112919 sources."cross-spawn-6.0.5" 110717 112920 sources."crypto-browserify-3.12.0" 110718 - sources."css-select-4.0.0" 112921 + sources."css-select-4.1.2" 110719 112922 sources."css-what-5.0.0" 110720 112923 sources."cyclist-1.0.1" 110721 112924 sources."debug-3.2.6" ··· 110735 112938 sources."dom-serializer-1.3.1" 110736 112939 sources."domain-browser-1.2.0" 110737 112940 sources."domelementtype-2.2.0" 110738 - sources."domhandler-4.1.0" 110739 - sources."domutils-2.5.2" 112941 + sources."domhandler-4.2.0" 112942 + sources."domutils-2.6.0" 110740 112943 (sources."duplexify-3.7.1" // { 110741 112944 dependencies = [ 110742 112945 sources."isarray-1.0.0" ··· 111026 113229 sources."kind-of-3.2.2" 111027 113230 ]; 111028 113231 }) 111029 - sources."object-inspect-1.9.0" 113232 + sources."object-inspect-1.10.2" 111030 113233 sources."object-keys-1.1.1" 111031 113234 sources."object-visit-1.0.1" 111032 113235 sources."object.assign-4.1.0" ··· 112048 114251 sources."isarray-1.0.0" 112049 114252 sources."isexe-2.0.0" 112050 114253 sources."isobject-3.0.1" 112051 - (sources."js-beautify-1.13.11" // { 114254 + (sources."js-beautify-1.13.13" // { 112052 114255 dependencies = [ 112053 114256 sources."mkdirp-1.0.4" 112054 114257 ]; ··· 112748 114951 sources."doctrine-3.0.0" 112749 114952 sources."dom-serializer-1.2.0" 112750 114953 sources."domelementtype-2.2.0" 112751 - sources."domhandler-4.1.0" 112752 - sources."domutils-2.5.2" 114954 + sources."domhandler-4.2.0" 114955 + sources."domutils-2.6.0" 112753 114956 sources."dot-prop-5.3.0" 112754 114957 sources."dtrace-provider-0.8.8" 112755 114958 sources."duplexer3-0.1.4" ··· 113251 115454 sources."ajv-keywords-3.5.2" 113252 115455 sources."browserslist-4.16.4" 113253 115456 sources."buffer-from-1.1.1" 113254 - sources."caniuse-lite-1.0.30001208" 115457 + sources."caniuse-lite-1.0.30001209" 113255 115458 sources."chrome-trace-event-1.0.3" 113256 115459 sources."colorette-1.2.2" 113257 115460 sources."commander-2.20.3" ··· 114332 116535 }) 114333 116536 sources."winreg-1.2.4" 114334 116537 sources."wrappy-1.0.2" 114335 - sources."ws-7.4.4" 116538 + sources."ws-7.4.5" 114336 116539 sources."xml2js-0.4.23" 114337 116540 sources."xmlbuilder-11.0.1" 114338 116541 sources."xmldom-0.1.31" ··· 114448 116651 sources."no-cliches-0.3.2" 114449 116652 sources."normalize-package-data-2.5.0" 114450 116653 sources."object-assign-4.1.1" 114451 - sources."object-inspect-1.9.0" 116654 + sources."object-inspect-1.10.2" 114452 116655 sources."object-keys-1.1.1" 114453 116656 sources."object.assign-4.1.2" 114454 116657 sources."object.entries-1.1.3"
+35
pkgs/development/python-modules/pur/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , click 4 + , fetchFromGitHub 5 + , pytestCheckHook 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "pur"; 10 + version = "5.4.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "alanhamlett"; 14 + repo = "pip-update-requirements"; 15 + rev = version; 16 + sha256 = "1p2g0kz9l0rb59b3rkclb6wwidc93kwqh2hm4xc22b1w9r946six"; 17 + }; 18 + 19 + propagatedBuildInputs = [ 20 + click 21 + ]; 22 + 23 + checkInputs = [ 24 + pytestCheckHook 25 + ]; 26 + 27 + pythonImportsCheck = [ "pur" ]; 28 + 29 + meta = with lib; { 30 + description = "Python library for update and track the requirements"; 31 + homepage = "https://github.com/alanhamlett/pip-update-requirements"; 32 + license = with licenses; [ bsd2 ]; 33 + maintainers = with maintainers; [ fab ]; 34 + }; 35 + }
+1 -1
pkgs/development/tools/analysis/spin/default.nix
··· 40 40 description = "Formal verification tool for distributed software systems"; 41 41 homepage = "http://spinroot.com/"; 42 42 license = licenses.free; 43 - platforms = platforms.linux; 43 + platforms = platforms.linux ++ platforms.darwin; 44 44 maintainers = with maintainers; [ pSub ]; 45 45 }; 46 46 }
+2 -2
pkgs/development/tools/doctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "doctl"; 5 - version = "1.58.0"; 5 + version = "1.59.0"; 6 6 7 7 vendorSha256 = null; 8 8 ··· 32 32 owner = "digitalocean"; 33 33 repo = "doctl"; 34 34 rev = "v${version}"; 35 - sha256 = "sha256-zOEd7e9OgkQxVaHIw9LZJ7ufl2sNpMnTTM3KetiWl+w="; 35 + sha256 = "sha256-mkFKYWPUEHVtQi9eUPxvWYxNCfVrKdjo2bH2DEwL1d0="; 36 36 }; 37 37 38 38 meta = with lib; {
+8 -4
pkgs/development/tools/sumneko-lua-language-server/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sumneko-lua-language-server"; 5 - version = "1.16.0"; 5 + version = "1.20.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "sumneko"; 9 9 repo = "lua-language-server"; 10 10 rev = version; 11 - sha256 = "1fqhvmz7a4qgz3zq6qgpcjhhhm2j4wpx0385n3zcphd9h9s3a9xa"; 11 + sha256 = "sha256-7Ishq/TonJsteHBGDTNjImIwGPdeRgPS1g60d8bhTYg="; 12 12 fetchSubmodules = true; 13 13 }; 14 14 ··· 22 22 ''; 23 23 24 24 ninjaFlags = [ 25 - "-f ninja/linux.ninja" 26 - ]; 25 + "-fninja/linux.ninja" 26 + ]; 27 27 28 28 postBuild = '' 29 29 cd ../.. ··· 31 31 ''; 32 32 33 33 installPhase = '' 34 + runHook preInstall 35 + 34 36 mkdir -p $out/bin $out/extras 35 37 cp -r ./{locale,meta,script,*.lua} $out/extras/ 36 38 cp ./bin/Linux/{bee.so,lpeglabel.so} $out/extras ··· 40 42 --add-flags "-E $out/extras/main.lua \ 41 43 --logpath='~/.cache/sumneko_lua/log' \ 42 44 --metapath='~/.cache/sumneko_lua/meta'" 45 + 46 + runHook postInstall 43 47 ''; 44 48 45 49 meta = with lib; {
+3 -3
pkgs/development/web/flyctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "flyctl"; 5 - version = "0.0.170"; 5 + version = "0.0.210"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "superfly"; 9 9 repo = "flyctl"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-9lpO4E6tC2ao1/DFu++siHD0RRtOfUAhfMvVZPGdMsk="; 11 + sha256 = "sha256-9SHH54ryll2Mt22Z82YQIcNYk9raPyOZ/QFri2ebPrQ="; 12 12 }; 13 13 14 14 preBuild = '' ··· 17 17 18 18 subPackages = [ "." ]; 19 19 20 - vendorSha256 = "sha256-DPbCC2n4NpcUuniig7BLanJ84ny9U6eyhzGhsJLpgHA="; 20 + vendorSha256 = "sha256-eEcFxEpVBad57mJXaCCYVeMO+cooUOLsSTKIZnu8Bok="; 21 21 22 22 doCheck = false; 23 23
+3 -3
pkgs/misc/vim-plugins/overrides.nix
··· 106 106 107 107 LanguageClient-neovim = 108 108 let 109 - version = "0.1.160"; 109 + version = "0.1.161"; 110 110 LanguageClient-neovim-src = fetchFromGitHub { 111 111 owner = "autozimu"; 112 112 repo = "LanguageClient-neovim"; 113 113 rev = version; 114 - sha256 = "143cifahav1pfmpx3j1ihx433jrwxf6z27s0wxndgjkd2plkks58"; 114 + sha256 = "Z9S2ie9RxJCIbmjSV/Tto4lK04cZfWmK3IAy8YaySVI="; 115 115 }; 116 116 LanguageClient-neovim-bin = rustPlatform.buildRustPackage { 117 117 pname = "LanguageClient-neovim-bin"; 118 118 inherit version; 119 119 src = LanguageClient-neovim-src; 120 120 121 - cargoSha256 = "0mf94j85awdcqa6cyb89bipny9xg13ldkznjf002fq747f55my2a"; 121 + cargoSha256 = "H34UqJ6JOwuSABdOup5yKeIwFrGc83TUnw1ggJEx9o4="; 122 122 buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; 123 123 124 124 # FIXME: Use impure version of CoreFoundation because of missing symbols.
+1 -1
pkgs/os-specific/bsd/netbsd/default.nix
··· 61 61 builder = ./builder.sh; 62 62 63 63 meta = with lib; { 64 - maintainers = with maintainers; [matthewbauer]; 64 + maintainers = with maintainers; [ matthewbauer qyliss ]; 65 65 platforms = platforms.unix; 66 66 license = licenses.bsd2; 67 67 };
+13 -2
pkgs/os-specific/darwin/darling/default.nix
··· 8 8 url = "https://github.com/darlinghq/darling/archive/d2cc5fa748003aaa70ad4180fff0a9a85dc65e9b.tar.gz"; 9 9 sha256 = "11b51fw47nl505h63bgx5kqiyhf3glhp1q6jkpb6nqfislnzzkrf"; 10 10 postFetch = '' 11 - # Get rid of case conflict 12 - mkdir $out 11 + # The archive contains both `src/opendirectory` and `src/OpenDirectory`, 12 + # pre-create the directory to choose the canonical case on 13 + # case-insensitive filesystems. 14 + mkdir -p $out/src/OpenDirectory 15 + 13 16 cd $out 14 17 tar -xzf $downloadedFile --strip-components=1 15 18 rm -r $out/src/libm 19 + 20 + # If `src/opendirectory` and `src/OpenDirectory` refer to different 21 + # things, then combine them into `src/OpenDirectory` to match the result 22 + # on case-insensitive filesystems. 23 + if [ "$(stat -c %i src/opendirectory)" != "$(stat -c %i src/OpenDirectory)" ]; then 24 + mv src/opendirectory/* src/OpenDirectory/ 25 + rmdir src/opendirectory 26 + fi 16 27 ''; 17 28 }; 18 29
+4 -3
pkgs/servers/nosql/redis/default.nix
··· 1 - { lib, stdenv, fetchurl, lua, pkg-config, systemd, nixosTests 1 + { lib, stdenv, fetchurl, lua, pkg-config, nixosTests 2 + , withSystemd ? stdenv.isLinux && !stdenv.hostPlatform.isMusl, systemd 2 3 , tlsSupport ? true, openssl 3 4 }: 4 5 ··· 23 24 nativeBuildInputs = [ pkg-config ]; 24 25 25 26 buildInputs = [ lua ] 26 - ++ lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) systemd 27 + ++ lib.optional withSystemd systemd 27 28 ++ lib.optionals tlsSupport [ openssl ]; 28 29 # More cross-compiling fixes. 29 30 # Note: this enables libc malloc as a temporary fix for cross-compiling. ··· 31 32 # It's weird that the build isn't failing because of failure to compile dependencies, it's from failure to link them! 32 33 makeFlags = [ "PREFIX=$(out)" ] 33 34 ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "AR=${stdenv.cc.targetPrefix}ar" "RANLIB=${stdenv.cc.targetPrefix}ranlib" "MALLOC=libc" ] 34 - ++ lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) ["USE_SYSTEMD=yes"] 35 + ++ lib.optional withSystemd [ "USE_SYSTEMD=yes" ] 35 36 ++ lib.optionals tlsSupport [ "BUILD_TLS=yes" ]; 36 37 37 38 enableParallelBuilding = true;
+2 -2
pkgs/tools/misc/nncp/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "nncp"; 13 - version = "6.2.0"; 13 + version = "6.3.0"; 14 14 15 15 src = fetchurl { 16 16 url = "http://www.nncpgo.org/download/${pname}-${version}.tar.xz"; 17 - sha256 = "1zj0v82zqigcxhpc50mvafvi1ihs92ck35vjfrwb7wzzd7nysb17"; 17 + sha256 = "0ss6p91r9sr3q8p8f6mjjc2cspx3fq0q4w44gfxl0da2wc8nmhkn"; 18 18 }; 19 19 20 20 nativeBuildInputs = [ go redo-apenwarr ];
+4 -8
pkgs/tools/security/ffuf/default.nix
··· 1 - { buildGoModule 1 + { lib 2 + , buildGoModule 2 3 , fetchFromGitHub 3 - , lib 4 4 }: 5 5 6 6 buildGoModule rec { 7 7 pname = "ffuf"; 8 - version = "1.2.1"; 8 + version = "1.3.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = pname; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-XSdFLfSYDdKI7BYo9emYanvZeSFGxiNLYxuw5QKAyRc="; 14 + sha256 = "sha256-0ckpEiXxen2E9IzrsmKoEKagoJ5maAbH1tHKgQjoCjo="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-szT08rIozAuliOmge5RFX4NeVrJ2pCVyfotrHuvc0UU="; 18 - 19 - # tests don't pass due to an issue with the memory addresses 20 - # https://github.com/ffuf/ffuf/issues/367 21 - doCheck = false; 22 18 23 19 meta = with lib; { 24 20 description = "Fast web fuzzer written in Go";
+30
pkgs/tools/security/traitor/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "traitor"; 8 + version = "0.0.3"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "liamg"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "0mffh4k87ybl0mpglgi2yfwksygrh62mcmkcmfcbszlh5pagsch1"; 15 + }; 16 + 17 + vendorSha256 = null; 18 + 19 + meta = with lib; { 20 + description = "Automatic Linux privilege escalation"; 21 + longDescription = '' 22 + Automatically exploit low-hanging fruit to pop a root shell. Traitor packages 23 + up a bunch of methods to exploit local misconfigurations and vulnerabilities 24 + (including most of GTFOBins) in order to pop a root shell. 25 + ''; 26 + homepage = "https://github.com/liamg/traitor"; 27 + license = with licenses; [ mit ]; 28 + maintainers = with maintainers; [ fab ]; 29 + }; 30 + }
+2 -2
pkgs/tools/text/frangipanni/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "frangipanni"; 5 - version = "0.4.2"; 5 + version = "0.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "birchb1024"; 9 9 repo = "frangipanni"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-RzXfsaT/CUyWCpB5JGgl511gxgvzerqgwjpORgzyPCQ="; 11 + sha256 = "sha256-jIXyqwZWfCBSDTTodHTct4V5rjYv7h4Vcw7cXOFk17w="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-TSN5M/UCTtfoTf1hDCfrJMCFdSwL/NVXssgt4aefom8=";
+4
pkgs/top-level/all-packages.nix
··· 9314 9314 9315 9315 tradcpp = callPackage ../development/tools/tradcpp { }; 9316 9316 9317 + traitor = callPackage ../tools/security/traitor { }; 9318 + 9317 9319 tre = callPackage ../development/libraries/tre { }; 9318 9320 9319 9321 tremor-rs = callPackage ../tools/misc/tremor-rs { }; ··· 24232 24234 libsoundio = null; 24233 24235 portaudio = null; 24234 24236 }; 24237 + 24238 + losslesscut-bin = callPackage ../applications/video/losslesscut-bin { }; 24235 24239 24236 24240 loxodo = callPackage ../applications/misc/loxodo { }; 24237 24241
+2
pkgs/top-level/python-packages.nix
··· 5116 5116 5117 5117 pulsectl = callPackage ../development/python-modules/pulsectl { }; 5118 5118 5119 + pur = callPackage ../development/python-modules/pur { }; 5120 + 5119 5121 pure-cdb = callPackage ../development/python-modules/pure-cdb { }; 5120 5122 5121 5123 pure-eval = callPackage ../development/python-modules/pure-eval { };
+2 -2
pkgs/top-level/ruby-packages.nix
··· 1280 1280 platforms = []; 1281 1281 source = { 1282 1282 remotes = ["https://rubygems.org"]; 1283 - sha256 = "1p1iviq8q9za2hg0vqyrarrc3mqfskgp7spxp37xj0kl3g89vswq"; 1283 + sha256 = "1nw1gscax8zsv1m682h9f8vys26385nrwpkbigiifs5bsz6272rk"; 1284 1284 type = "gem"; 1285 1285 }; 1286 - version = "1.4.1"; 1286 + version = "1.4.2"; 1287 1287 }; 1288 1288 libv8 = { 1289 1289 groups = ["default"];