React
Learning a new skill
Ask friends and colleageues
ChatGPT to ask what is ‘React’. Ask it to help get started.
Go to source documentation.
Follow a tutorial (couldn’t find one to help me install tools)
- Install tools (this was hard on WSL2)
- Hello world
- Source control - git
- Deploy to hosted production eg vercel
- Deploy to custom webserver eg nginx
React
- React
- Next.js
- Javascript / Typescript
I’ve been a server side web programmer for a long time - PHP / Coldfusion / .NET / Rails / Python / Jekyll / Hugo and raw HTML / CSS
I’ve made Bootstrap elements work using JavaScript and Tailwind elements for https://osr4rightstools.org/ and https://hmsoftware.co.uk/, and random Javascript.
I have made complex web apps by having fast server side code which has created very simple and easy to maintain apps.
So why try a front end library/framework?
- I’ve got a client who is building a very impressive front end app in a profressional way
- Tailwind templates comes in React and Next.js
- I own a software company and customers expect products to be slick / interactive / responsive
- It is fun to learn (and incredably useful to keep learning how to learn as a professional - does ChatGPT help now?)
- I teach at a local coding club - so learning how to learn something new is important
React
https://tailwindui.com/templates/salient uses
- React v18 (latest is 18.3.1 on 5th Nov 24)
- Next.js v14
- Headless UI v2.1 (by Tailwindlabs)
- TypeScript v5.3
- Tailwind CSS v3.4
please explain what React is (the javascript framework) as a beginner
JavaScript library for building especially single page applications where you want the content to feel dynamic and responsive
- Component based eg a building block of the UI. button / header or section. Can reuse components.
- Virtual DOM - lightweight copy of DOM that React keeps in memory
- JSX - JavaScript XML. HTML like syntat in JavaScript code.
Created at Facebook in 2011.
Alternatives to React
What has 2 way data binding?
- Svelte
- Angular
Next.js
Next.js is a React framework which includes Routing and Data fetching.
Vercel who are an infrastructure company that make Next.js
Recommended to use a framework if building a new site fully with React.
Node.js and nvm and npx setup
please show me how to make my first React program
Install Node.js which allows JavaScript code to be run server side. It uses Google’s V8 engine which is used in Chrome. It compiles direct to machine code making Node.js fast and efficient.
nvm is a version manager for node.js
https://github.com/coreybutler/nvm-windows#node-version-manager-nvm-for-windows but here is another which looks newer.
# install or update nvm
# https://github.com/nvm-sh/nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
# 0.40.1 on 4th Nov 24
nvm --version
# Node.js (LTS) if 22.11.0 on 4th Nov 24
# https://nodejs.org/en
nvm install --lts
# make the lts version the default for new terminal sessions (it was 20 on my machine)
# nvm alias default node
# 22.11.0
node --version
# update npm (maybe I shouldn't have done this?)
# npm install npm@latest -g
# Node Package Manager
# 10.9.0 (in node v22)
npm --version
# npm cache clean --force
npx lets you run Node.js packages and scripts directly without globally installing them
# CRA - Create React APP
# uses node package create-react-app (5.0.1)
# use verbose so can see what is happening
# I've not been able to get this to work on my WSL2 dev instance
# maybe conflicts in my previous attempts at node?
npx create-react-app react-app --verbose
First experience - it just hung!
# clean cache - didn't help stall
npm cache clean --force
So it didn’t hang. Just insanely slow. This is after 30 minutes with no network activity nor CPU. After 6 hours it got 1200 packages?
Solving npx create-react-app lag on WSL by fixing fsevents
# didn't work (well it does - but takes 10 hours)
# npx create-react-app react-app --verbose --no-optional
# this made Ubuntu 22 work (first part) - have to run this each time.
# npm i fsevents@latest -f --save-optional
# this worked on first step but failed on installing template dependencies
# npx create-react-app react-app --verbose --omit=optional
# this didn't work - hung while trying to get fsevents
# npm install @testing-library/jest-dom@^5.14.1 @testing-library/react@^13.0.0 @testing-library/user-event@^13.2.1 web-vitals@^2.1.0 --omit=optional --verbose
# this worked (so am not installing @testing-library modules)
# npm i fsevents@latest -f --save-optional
# have to do the fsevents line above to get below to work
# npm install web-vitals@^2.1.0 --omit=optional --verbose
# npm install @testing-library/jest-dom@^5.14.1 --omit=optional --verbose
# npm install @testing-library/react@^13.0.0 --omit=optional --verbose
# roll up previous 3
# npm install web-vitals@^2.1.0 @testing-library/jest-dom@^5.14.1 @testing-library/react@^13.0.0 --omit=optional --verbose
# this doesn't work
# npm install @testing-library/user-event@^13.2.1 --omit=optional --verbose
# works
# if I don't do force then the fsevents dependency will hang for hours
# sometimes have to run it 3 times.
# then I don't need the force
#npx create-react-app react-app27 --verbose --force
# doesn't work first time
# works second (well the third.. as gets stuck on fsevents on 2 different places)
# https://stackoverflow.com/questions/79181553/npm-install-optional-dependency-hanging-on-ws2l-works-second-time
npx create-react-app react-app27 --verbose
# works
npm start
# works - create a minified bundle
npm run build
# needs all except user-event
npm test
So I can get create-react-app working on WSL2 but not with the testing-library/user-event part. Actually after a successful install like above, I can do anoter
React Foundations (nextjs.org)
https://nextjs.org/learn/dashboard-app - a good nextjs course, but firstly I need foundations in React:
https://nextjs.org/learn/react-foundations
<!-- Demo showing updating page content via the DOM -->
<!-- imperative programming ie how the UI should be updated eg all the steps to order and cook a pizza -->
<!-- declartive programming is just saying what it should be eg order pizza-->
<!-- React is a declarative library. Tell it what and it will update the DOM on your behalf -->
<html>
<body>
<div id="app"></div>
<script type="text/javascript">
const app = document.getElementById('app');
// Create a new H1 element
const header = document.createElement('h1');
// Create a new text node for the H1 element
const text = 'Develop. Preview. Ship.';
const headerContent = document.createTextNode(text);
// Append the text to the H1 element
header.appendChild(headerContent);
// Place the H1 element inside the div
app.appendChild(header);
</script>
</body>
</html>
- VSCode Shift Alt F - format (I’ve installed Prettier)
JSX - syntax extension for JavaScript. Describe UI in a HTML like syntax
Need a JavaScript compiler eg Babel to transform JSX into JavaScript
<html>
<body>
<div id="app"></div>
<script src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/jsx">
const domNode = document.getElementById('app');
const root = ReactDOM.createRoot(domNode);
root.render(<h1>Develop. Preview. Ship.</h1>);
</script>
</body>
</html>
and seeing the output
<html>
<body>
<div id="app"></div>
<script src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/jsx">
{/* JSX comment
const domNode = document.getElementById('app');
const root = ReactDOM.createRoot(domNode);
root.render(<h1>Develop. Preview. Ship.</h1>); */}
// Define the JSX code
const code = `
const domNode = document.getElementById('app');
const root = ReactDOM.createRoot(domNode);
root.render(<h1>Develop. Preview. Ship.</h1>);
`;
// Transform JSX to JavaScript using Babel
const output = Babel.transform(code, { presets: ['react'] }).code;
// Log the transformed code to the console
console.log(output);
// Execute the transformed code
eval(output);
</script>
</body>
</html>
Behind the scenes it ran:
const domNode = document.getElementById('app');
const root = ReactDOM.createRoot(domNode);
root.render(/*#__PURE__*/React.createElement("h1", null, "Develop. Preview. Ship."));
Components
<script type="text/jsx">
const app = document.getElementById('app');
{/* React components should be capatalised */}
function Header() {
return (<h1>Develop. Preview. Ship.</h1>)
}
const root = ReactDOM.createRoot(app);
{/* Angle brackets to return components function */}
root.render(<Header />);
</script>
and nested:
const app = document.getElementById('app');
{/* React components should be capatalised */}
function Header() {
return <h1>Develop. Preview. Ship.</h1>
}
function HomePage() {
return (
<div>
{/* Nesting the Header component */}
<Header />
</div>
);
}
const root = ReactDOM.createRoot(app);
{/* Angle brackets to return components function */}
root.render(<HomePage />);
Props
asdf
const app = document.getElementById('app');
function Header({ title }) {
return <h1>{title ? title : 'Default title'}</h1>
}
function HomePage() {
return (
<div>
{/* pass custom title prop to Header component */}
<Header title="React" />
<Header title="A new title" />
</div>
);
}
const root = ReactDOM.createRoot(app);
root.render(<HomePage />);
Iterate through lists
State
https://nextjs.org/learn/react-foundations/updating-state
Learn React with Tic-Tac-Toe
This starter template is much simpler than CRA.
https://react.dev/learn/tutorial-tic-tac-toe
- package.json - defines metadata and dependencies for a Node.js project.
# force to stop the fsevents stall problem
# adds 1,311 packages, 36,191 files and 278MB into node_modules
# adds a package-lock.json
npm i --force --verbose
# first time just accept defaults for Chrome as a browser
npm start
asdf
// App.js
// creates a Component
// export JavaScript keywords makes this functin accessible outisde of this file
// default means main function in file
export default function Square() {
// returns a button which is a JSX element - combination of JavaScript and HTML
return <button className="square">X</button>;
}
// Fragments to wrap multiple adjacents JSX elements
export default function Square() {
return (
<>
<button className="square">X</button>
<button className="square">X</button>
</>
);
}
// 3x3
export default function Square() {
return (
<>
<div className="board-row">
<button className="square">1</button>
<button className="square">2</button>
<button className="square">3</button>
</div>
<div className="board-row">
<button className="square">4</button>
<button className="square">5</button>
<button className="square">6</button>
</div>
<div className="board-row">
<button className="square">7</button>
<button className="square">8</button>
<button className="square">9</button>
</div>
</>
);
}
// Square component
function Square() {
return <button className="square">1</button>;
}
export default function Board() {
return (
<>
<div className="board-row">
<Square />
<Square />
<Square />
</div>
<div className="board-row">
<Square />
<Square />
<Square />
</div>
<div className="board-row">
<Square />
<Square />
<Square />
</div>
</>
);
}
// Pass data through props
function Square({ value }) {
return <button className="square">{value}</button>;
}
export default function Board() {
return (
<>
<div className="board-row">
<Square value="1" />
<Square value="2" />
<Square value="3" />
</div>
<div className="board-row">
<Square value="4" />
<Square value="5" />
<Square value="6" />
</div>
<div className="board-row">
<Square value="7" />
<Square value="8" />
<Square value="9" />
</div>
</>
);
}
// onClick
function Square({ value }) {
function handleClick() {
// writes to console in dev tools
console.log('clicked!');
}
return (
<button
className="square"
onClick={handleClick}
>
{value}
</button>
);
}
// state
import { useState } from 'react';
function Square() {
const [value, setValue] = useState(null);
function handleClick() {
// console.log('clicked!');
setValue('X');
}
return (
<button className="square" onClick={handleClick}>{value}</button>
);
}
export default function Board() {
return (
<>
<div className="board-row">
<Square />
<Square />
<Square />
</div>
<div className="board-row">
<Square />
<Square />
<Square />
</div>
<div className="board-row">
<Square />
<Square />
<Square />
</div>
</>
);
}
React Developer Tools - adds Components and Profiler to developer toolbar.
// So this code got very interesting
// store state in parent Board so can easily do gameplay
// pass value to child Square so it knows what to display
import { useState } from 'react';
function Square({ value, onSquareClick }) {
return (
<button className="square" onClick={onSquareClick}>
{value}
</button>
);
}
export default function Board() {
const [xIsNext, setXIsNext] = useState(true);
// squares state variable thats initially set the the array
// eg will look like: ['O', null, 'X', 'X', 'X', 'O', 'O', null, null]
const [squares, setSquares] = useState(Array(9).fill(null));
function handleClick(i) {
// if square already filled or there is a winner, return
if (calculateWinner(squares) || squares[i]) {
return;
}
const nextSquares = squares.slice();
if (xIsNext) {
nextSquares[i] = "X";
} else {
nextSquares[i] = "O";
}
setSquares(nextSquares);
setXIsNext(!xIsNext);
}
const winner = calculateWinner(squares);
let status;
if (winner) {
status = 'Winner: ' + winner;
} else {
status = 'Next player: ' + (xIsNext ? 'X' : 'O');
}
return (
<>
<div className="status">{status}</div>
<div className="board-row">
<Square value={squares[0]} onSquareClick={() => handleClick(0)} />
<Square value={squares[1]} onSquareClick={() => handleClick(1)} />
<Square value={squares[2]} onSquareClick={() => handleClick(2)} />
</div>
<div className="board-row">
<Square value={squares[3]} onSquareClick={() => handleClick(3)} />
<Square value={squares[4]} onSquareClick={() => handleClick(4)} />
<Square value={squares[5]} onSquareClick={() => handleClick(5)} />
</div>
<div className="board-row">
<Square value={squares[6]} onSquareClick={() => handleClick(6)} />
<Square value={squares[7]} onSquareClick={() => handleClick(7)} />
<Square value={squares[8]} onSquareClick={() => handleClick(8)} />
</div>
</>
);
}
function calculateWinner(squares) {
const lines = [
[0, 1, 2],
[3, 4, 5],
[6, 7, 8],
[0, 3, 6],
[1, 4, 7],
[2, 5, 8],
[0, 4, 8],
[2, 4, 6]
];
for (let i = 0; i < lines.length; i++) {
const [a, b, c] = lines[i];
if (squares[a] && squares[a] === squares[b] && squares[a] === squares[c]) {
return squares[a];
}
}
return null;
}
Git
I used the .gitignore from the CRA sample
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Next.js with create-next-app
npx create-next-app@latest my-next-app7 --verbose
# used all defaults
- TS - yes
- ESlint - yes
- code inside src - no
- app rotuer - yes
- turbopack - no
- customize import alias by- no
# https://github.com/vercel/next.js/tree/canary/packages/create-next-app
# take default settings
npx create-next-app@latest my-next-app7 --verbose --yes
# react uses npm start
npm run dev
# change app/page.tsx
#
# tsconfig.json
# https://github.com/vercel/next.js/tree/canary/packages/create-next-app
# setup VSCode with TypeScript - use the version of TS in node_modules
# setup ESlink
Salient Template
salient-ts
npm i --verbose
# nextjs to run!
npm run dev
# do a quick change
# deploy to vercel - super easy!
Learning React with Create React App
Appendix 1 - Research
Youtube
TypeScript
A superset of JavaScript that adds static typing to the language
VSCode Prettier Extension
Format on save .. hmmm
Vite and Next.js and Gatsby
Good for SPA’s but doesn’t handle backend logic or databases. Use Next.js for that.
Vite includes a frontend build pipeline using Babel, esbuild and Rollup
Gatsby.js is a static site generator framework based on React.js
https://github.com/vitejs/vite
npm cache clean --force
npm create vite@latest --verbose
# does this use typescript?
npm create vite@latest my-react-app -- --template react --verbose
# he is using
# npm create vite@4.1.0
# react-app
# TypeScript
cd react-app
# npm i is shorter
# update dependencies - this fixed a stalling problem by updating of the dependencies
npx npm-check-updates -u
# am getting strange stalling issues here too
npm i --verbose
npm run dev
Appendix 2 - Debug Output
Here is the output which took 10 hours of create-react-app, which led to figuring out that is was fsevents which was causing the problem
I got it working (I think) withoug @testing-library parts
dave@DESKTOP-3GDSG0D:~/code$ npx create-react-app react-app --verbose
Need to install the following packages:
create-react-app@5.0.1
Ok to proceed? (y) y
npm warn deprecated uid-number@0.0.6: This package is no longer supported.
npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported
npm warn deprecated fstream-ignore@1.0.5: This package is no longer supported.
npm warn deprecated fstream@1.0.12: This package is no longer supported.
npm warn deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap.
npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
Creating a new React app in /home/dave/code/react-app.
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...
npm verbose cli /home/dave/.nvm/versions/node/v22.11.0/bin/node /home/dave/.nvm/versions/node/v22.11.0/bin/npm
npm info using npm@10.9.0
npm info using node@v22.11.0
npm verbose title npm install react react-dom react-scripts cra-template
npm verbose argv "install" "--no-audit" "--save" "--save-exact" "--loglevel" "error" "react" "react-dom" "react-scripts" "cra-template" "--loglevel" "verbose"
npm verbose logfile logs-max:10 dir:/home/dave/.npm/_logs/2024-11-05T15_11_49_382Z-
npm verbose logfile /home/dave/.npm/_logs/2024-11-05T15_11_49_382Z-debug-0.log
npm http fetch GET 200 https://registry.npmjs.org/react 1280ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-dom 242ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-scripts 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typescript 529ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cra-template 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loose-envify 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loose-envify 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/case-sensitive-paths-webpack-plugin 111ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-named-asset-import 116ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-minimizer-webpack-plugin 119ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/camelcase 121ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bfj 132ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-loader 145ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/browserslist 151ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dotenv-expand 158ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fwebpack 163ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-webpack-plugin 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-jest 169ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-preset-react-app 178ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fcore 183ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dotenv 191ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fs-extra 78ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@pmmmwh%2freact-refresh-webpack-plugin 203ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/identity-obj-proxy 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-loader 210ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/file-loader 101ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-config-react-app 167ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-watch-typeahead 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-flexbugs-fixes 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/html-webpack-plugin 123ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-loader 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-resolve 123ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mini-css-extract-plugin 113ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/prompts 87ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/postcss-preset-env 100ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss 125ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver 61ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/jest 167ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map-loader 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve-url-loader 100ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint 322ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/style-loader 97ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-dev-utils 144ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve 142ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/terser-webpack-plugin 99ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sass-loader 136ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-manifest-plugin 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fsevents 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-webpack-plugin 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-dev-server 111ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/scheduler 406ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-refresh 242ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack 203ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tailwindcss 260ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-app-polyfill 542ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/js-tokens 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fwebpack 96ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sockjs-client 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-fest 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-hot-middleware 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-plugin-serve 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rspack%2fcore 164ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@swc%2fhelpers 122ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/node-notifier 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/rework 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/rework-visit 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fibers 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/node-sass 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sass 88ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sass-embedded 35ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/gensync 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/convert-source-map 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json5 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2ftemplate 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-module-transforms 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/debug 88ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-compilation-targets 94ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fgenerator 98ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loader-utils 100ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-html 104ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2ftypes 108ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/schema-utils 110ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelpers 116ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/browserslist 21ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fparser 123ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/core-js-pure 124ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/html-entities 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fcode-frame 130ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/error-stack-parser 86ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@ampproject%2fremapping 132ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/schema-utils 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@types%2feslint-scope 90ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2ftraverse 143ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2festree 96ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/terser-webpack-plugin 16ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fwasm-edit 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-scope 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fast 107ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chrome-trace-event 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/glob-to-regexp 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fwasm-parser 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/graceful-fs 49ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/enhanced-resolve 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/events 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loader-utils 13ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/json-parse-even-better-errors 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mime-types 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/neo-async 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tapable 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-module-lexer 90ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loader-runner 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-sources 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/watchpack 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fpreset-react 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-react-constant-elements 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fplugin-jsx 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-preset-jest 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chalk 79ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/make-dir 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fplugin-svgo 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/slash 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftypes 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fpreset-env 101ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/find-cache-dir 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fpreset-react 11ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftransform 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-istanbul 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-proposal-class-properties 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fcore 124ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fbabel__core 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-proposal-decorators 97ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-flow-strip-types 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-proposal-nullish-coalescing-operator 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-proposal-optional-chaining 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-proposal-numeric-separator 92ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-proposal-private-methods 92ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-react-display-name 79ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-macros 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tryer 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/hoopy 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bluebird 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/update-browserslist-db 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/check-types 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fpreset-typescript 115ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/node-releases 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-modules-extract-imports 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map 18ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/jsonpath 106ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-modules-values 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fpreset-env 144ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-value-parser 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/icss-utils 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-modules-local-by-default 88ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/serialize-javascript 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-modules-scope 98ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-worker 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/levn 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssnano 96ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esquery 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-glob 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ignore 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/espree 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/caniuse-lite 174ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esutils 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/doctrine 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/find-up 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv 107ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/minimatch 62ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fruntime 235ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-scope 33ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/optionator 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/graphemer 88ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-runtime 268ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cross-spawn 69ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/glob-parent 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globals 124ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/text-table 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi 90ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@eslint%2fjs 96ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/js-yaml 119ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/natural-compare 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/imurmurhash 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash.merge 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-path-inside 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/electron-to-chromium 245ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-visitor-keys 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@eslint%2feslintrc 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@nodelib%2ffs.walk 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/file-entry-cache 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-worker 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@humanwhocodes%2fconfig-array 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@eslint-community%2fregexpp 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@eslint-community%2feslint-utils 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/confusing-browser-globals 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@humanwhocodes%2fmodule-importer 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2feslint-parser 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-jsx-a11y 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@ungap%2fstructured-clone 108ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tapable 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@rushstack%2feslint-patch 125ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/normalize-path 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/micromatch 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsonfile 80ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/universalify 75ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/html-minifier-terser 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-testing-library 117ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2feslint 122ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fhtml-minifier-terser 103ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-error 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/harmony-reflect 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-jest 156ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-react 150ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash 106ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-flowtype 202ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/import-local 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/slash 34ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi 23ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/jest-pnp-resolver 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-escapes 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve.exports 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string-length 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-regex-util 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-haste-map 107ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-util 126ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/picocolors 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-watcher 99ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-cli 157ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-validate 148ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map-js 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/klona 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-browser-comments 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sanitize.css 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fcore 181ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cosmiconfig 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fnormalize.css 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-place 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssdb 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/nanoid 116ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-import 327ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-clamp 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-initial 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-blank-pseudo 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-has-pseudo 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-page-break 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-custom-media 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/autoprefixer 95ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-logical 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-nesting 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-lab-function 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-media-minmax 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-font-variant 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-focus-within 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-selector-not 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-prefers-color-scheme 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-env-function 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-custom-selectors 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-gap-properties 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-dir-pseudo-class 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-focus-visible 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-image-set-function 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-react-hooks 371ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-opacity-percentage 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-overflow-shorthand 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-color-hex-alpha 103ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-color-rebeccapurple 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-unset-value 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-pseudo-class-any-link 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-replace-overflow-wrap 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-custom-properties 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-ic-unit 97ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-hwb-function 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-oklab-function 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-color-functional-notation 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-color-function 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-is-pseudo-class 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-cascade-layers 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/kleur 38ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/sisteransi 40ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/postcss-double-position-gradients 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fcode-frame 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/postcss-attribute-case-insensitive 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-nested-calc 130ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/raf 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-assign 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-normalize-display-values 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/core-js 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-trigonometric-functions 92ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-font-format-keywords 95ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/detect-port-alt 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-stepped-value-functions 98ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/address 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/promise 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerator-runtime 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-progressive-custom-properties 104ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-text-decoration-shorthand 107ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-fetch 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/convert-source-map 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/klona 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/gzip-size 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/global-modules 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globby 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-root 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/filesize 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map-js 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/pkg-up 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2fparser 596ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-glob 53ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/supports-preserve-symlinks-flag 92ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/open 113ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/abab 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-parse 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/recursive-readdir 116ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/adjust-sourcemap-loader 104ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/arg 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dlv 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/shell-quote 118ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-error-overlay 123ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-core-module 119ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/iconv-lite 95ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/picocolors 20ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/jiti 93ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/serialize-javascript 10ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/sucrase 93ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/immer 169ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2feslint-plugin 692ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/open 81ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/didyoumean 114ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-glob 127ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lilconfig 121ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-js 111ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-load-config 107ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@alloc%2fquick-lru 110ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-hash 114ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-nested 113ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-import 118ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-selector-parser 113ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2ftrace-mapping 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chokidar 146ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/spdy 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ws 109ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fork-ts-checker-webpack-plugin 288ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sockjs 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/html-entities 24ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/rimraf 120ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/terser 143ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-retry 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/serve-index 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chokidar 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/colorette 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bonjour-service 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ipaddr.js 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/selfsigned 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fws 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-sources 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/webpack-sources 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/default-gateway 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/express 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/compression 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/launch-editor 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fsockjs 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-html-community 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-proxy-middleware 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fexpress 79ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-dev-middleware 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/upath 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/connect-history-api-fallback 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fserve-index 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fserve-static 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fbonjour 100ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fconnect-history-api-fallback 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-bytes 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-build 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fcore 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/globals 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fparser 13ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2ftrace-mapping 15ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2ftrace-mapping 16ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2ftypes 15ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2ftypes 17ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/ms 46ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-validator-identifier 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fcompat-data 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2fgen-mapping 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2fgen-mapping 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-module-imports 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lru-cache 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsesc 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-validator-identifier 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-validator-option 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-string-parser 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-validator-identifier 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2fset-array 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2fsourcemap-codec 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2fsourcemap-codec 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2fresolve-uri 79ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yallist 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/ajv-keywords 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stackframe 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fjson-schema 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/big.js 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv-formats 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emojis-list 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-polyfill-corejs2 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-polyfill-corejs3 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-polyfill-regenerator 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-plugin-utils 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/core-js-compat 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-plugin-utils 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-literals 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-modules-umd 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-new-target 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-for-of 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-parameters 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fpreset-modules 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-classes 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-spread 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-modules-amd 92ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-dotall-regex 93ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-regenerator 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-json-strings 104ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-sticky-regex 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-destructuring 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-typeof-symbol 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-import-assertions 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-unicode-regex 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-duplicate-keys 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-dynamic-import 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-function-name 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-private-methods 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-reserved-words 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-arrow-functions 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-unicode-sets-regex 86ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-class-properties 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-unicode-escapes 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-object-super 170ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-regexp-modifiers 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-import-attributes 115ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-modules-commonjs 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-modules-systemjs 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-template-literals 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-property-literals 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-numeric-separator 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-block-scoping 162ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-async-to-generator 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-optional-chaining 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-object-rest-spread 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-export-namespace-from 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-computed-properties 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-unicode-sets-regex 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-block-scoped-functions 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-exponentiation-operator 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-proposal-private-property-in-object 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-optional-catch-binding 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-react-display-name 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-unicode-property-regex 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-class-static-block 112ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-async-generator-functions 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-shorthand-properties 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-private-property-in-object 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-named-capturing-groups-regex 79ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-member-expression-literals 99ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-duplicate-named-capturing-groups-regex 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-bugfix-v8-spread-parameters-in-optional-chaining 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-bugfix-firefox-class-in-computed-class-key 97ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-nullish-coalescing-operator 110ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-bugfix-safari-class-field-initializer-scope 93ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-bugfix-safari-id-destructuring-collision-in-function-expression 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/svg-parser 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-react-pure-annotations 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-react-jsx 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-react-jsx-development 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-bugfix-v8-static-class-fields-redefine-readonly 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fhast-util-to-babel-ast 86ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-preset 88ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-logical-assignment-operators 170ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/svgo 151ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/deepmerge 162ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-builder-binary-assignment-operator-visitor 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-remap-async-to-generator 79ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-remap-async-to-generator 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/core-js-compat 11ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-replace-supers 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-annotate-as-pure 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-replace-supers 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-simple-access 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers 94ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin 117ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerator-transform 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin 124ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-annotate-as-pure 129ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin 132ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regexpu-core 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unicode-match-property-value-ecmascript 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unicode-match-property-ecmascript 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerate 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regjsgen 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerate-unicode-properties 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regjsparser 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-wrap-function 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fruntime 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-jsx 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/import-fresh 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-type 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parse-json 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fparse-json 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yaml 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-plugin-svg-dynamic-title 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-plugin-remove-jsx-empty-expression 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-plugin-add-jsx-attribute 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-plugin-transform-react-native-svg 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-plugin-remove-jsx-attribute 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-plugin-transform-svg-component 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-plugin-replace-jsx-attribute-value 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr%2fbabel-plugin-svg-em-dimensions 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/js-yaml 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/mkdirp 35ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/css-select 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/csso 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unquote 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-tree 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stable 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/util.promisify 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-select-base-adapter 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sax 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.values 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/coa 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/jest-regex-util 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/micromatch 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/pirates 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-preset-current-node-syntax 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/write-file-atomic 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/test-exclude 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-jest-hoist 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fbabel__generator 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fistanbul-reports 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-instrument 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@istanbuljs%2fschema 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fbabel__template 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fistanbul-lib-coverage 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fbabel__traverse 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fyargs 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-styles 82ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@istanbuljs%2fload-nyc-config 94ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/supports-color 118ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fnode 257ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/braces 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-serializer 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/anymatch 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/picomatch 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/picomatch 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-typedarray 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ci-info 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fgraceful-fs 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/signal-exit 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fb-watchman 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/walker 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typedarray-to-buffer 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/undici-types 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fistanbul-lib-report 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fyargs-parser 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fjson-schema 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/make-dir 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/ajv-keywords 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/commondir 34ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pkg-dir 35ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/find-up 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/camelcase 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-coverage 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-package-type 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/glob 58ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/resolve-from 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/argparse 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-exists 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/locate-path 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esprima 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash.debounce 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-nullish-coalescing-operator 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-json-strings 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-logical-assignment-operators 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-bigint 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-object-rest-spread 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-import-meta 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-optional-catch-binding 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-numeric-separator 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-async-generators 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-top-level-await 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-class-static-block 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-class-properties 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-optional-chaining 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-private-property-in-object 88ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerator-runtime 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-flow 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-decorators 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-typescript 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-typescript 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esprima 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/underscore 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/static-eval 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escalade 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/color-convert 41ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/has-flag 57ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/color-name 43ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/resolve-from 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/json-parse-even-better-errors 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/error-ex 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parent-module 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lines-and-columns 115ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-selector-parser 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/postcss-value-parser 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/postcss-selector-parser 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/lilconfig 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/cssnano-preset-default 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/randombytes 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/merge-stream 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-colormin 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-merge-rules 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-svgo 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-merge-longhand 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-calc 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-discard-empty 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-ordered-values 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-minify-params 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-reduce-initial 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-discard-comments 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssnano-utils 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-declaration-sorter 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-convert-values 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-minify-gradients 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-url 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-minify-selectors 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-string 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-unique-selectors 94ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-discard-overridden 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-charset 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-unicode 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-discard-duplicates 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-minify-font-values 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-positions 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-reduce-transforms 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-display-values 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-timing-functions 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-repeat-style 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-whitespace 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/svgo 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/caniuse-api 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/caniuse-api 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/normalize-url 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stylehacks 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/caniuse-api 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/colord 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/colord 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/jiti 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/acorn 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/espree 12ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal 14ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/type-fest 12ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/locate-path 15ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/argparse 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/strip-json-comments 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn-jsx 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fastq 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-key 43ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/which 45ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estraverse 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estraverse 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esrecurse 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/shebang-command 57ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/uri-js 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/flat-cache 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-extglob 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/deep-is 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/prelude-ls 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-check 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-levenshtein 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-check 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/word-wrap 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-regex 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/prelude-ls 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@nodelib%2ffs.scandir 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/brace-expansion 78ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@humanwhocodes%2fobject-schema 117ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/run-parallel 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/reusify 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@nodelib%2ffs.stat 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/queue-microtask 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/punycode 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/shebang-regex 38ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/isexe 65ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/eslint 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-syntax-flow 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fplugin-transform-react-jsx 1ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/eslint-visitor-keys 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/doctrine 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/is-core-module 1ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.findlastindex 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.flat 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tsutils 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/natural-compare-lite 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.values 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/string-natural-compare 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array-includes 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-import-resolver-node 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.fromentries 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/hasown 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.flatmap 90ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.groupby 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rtsao%2fscc 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@nicolo-ribaudo%2feslint-scope-5-internals 116ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-module-utils 116ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimend 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tsconfig-paths 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/aria-query 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.flatmap 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ast-types-flow 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/damerau-levenshtein 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/axobject-query 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emoji-regex 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsx-ast-utils 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estraverse 29ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/safe-regex-test 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/language-tags 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.findlast 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.includes 88ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve 24ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/es-iterator-helpers 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsx-ast-utils 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.tosorted 98ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/prop-types 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.repeat 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.entries 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.matchall 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2ftype-utils 365ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2futils 469ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/axe-core 432ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2ftypes 542ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2fscope-manager 580ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2ftypescript-estree 638ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2fscope-manager 689ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2futils 537ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2fexperimental-utils 715ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typescript 18ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/eslint 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/tslib 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fsemver 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint%2fvisitor-keys 365ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globby 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/fast-glob 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/array-union 34ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dir-glob 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/merge2 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-errors 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/call-bind 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-properties 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-abstract 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-properties 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/call-bind 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-object-atoms 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-string 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-object-atoms 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-intrinsic 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-abstract 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/call-bind 14ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/call-bind 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-properties 10ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/es-object-atoms 10ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/es-object-atoms 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/json5 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/es-abstract 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-shim-unscopables 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-shim-unscopables 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-properties 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-abstract 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-properties 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-shim-unscopables 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/function-bind 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/call-bind 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-bom 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/minimist 58ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fjson5 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-keys 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-property-descriptors 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-to-primitive 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-data-property 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/data-view-buffer 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/available-typed-arrays 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/set-function-length 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/data-view-byte-offset 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-define-property 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array-buffer-byte-length 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/arraybuffer.prototype.slice 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-set-tostringtag 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/function.prototype.name 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/data-view-byte-length 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-define-property 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-symbol-description 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/gopd 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globalthis 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-property-descriptors 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-proto 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/internal-slot 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-array-buffer 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-weakref 33ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-data-view 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-callable 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-proto 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/object.assign 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-typed-array 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regexp.prototype.flags 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-negative-zero 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-shared-array-buffer 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/safe-array-concat 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-symbols 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimstart 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trim 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-inspect 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-regex 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typed-array-byte-length 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typed-array-length 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-symbols 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typed-array-byte-offset 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typed-array-buffer 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unbox-primitive 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-tostringtag 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which-typed-array 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-data-property 1ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/has-tostringtag 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/is-shared-array-buffer 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/has-tostringtag 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/is-callable 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/which-typed-array 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/for-each 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/side-channel 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which-boxed-primitive 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-symbol 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/for-each 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/for-each 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-date-object 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/possible-typed-array-names 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/functions-have-names 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-bigints 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/for-each 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/possible-typed-array-names 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/set-function-name 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/isarray 82ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/language-subtag-registry 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/side-channel 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/iterator.prototype 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-is 112ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/set-function-name 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/reflect.getprototypeof 33ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2festree 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/flatted 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/keyv 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-locate 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-buffer 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/glob-parent 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/merge2 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/terser 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/relateurl 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/param-case 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/renderkid 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/commander 55ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/he 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/camel-case 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/clean-css 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tslib 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/tslib 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/dot-case 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map-support 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pascal-case 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell%2fsource-map 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/no-case 130ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/callsites 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which-builtin-type 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-escapes 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/jest-watcher 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/emittery 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve-cwd 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/exit 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-snapshot 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-changed-files 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/exit 94ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-runner 99ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fconsole 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-message-util 104ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftest-result 108ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yargs 109ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-resolve-dependencies 117ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2freporters 123ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-config 124ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-runtime 129ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-config 134ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftest-result 172ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ts-node 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@swc%2fcore 171ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@swc%2fhelpers 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@swc%2fwasm 140ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typescript 21ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/string-length 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/terminal-link 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-source-maps 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-report 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/throat 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-get-type 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/v8-to-istanbul 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/collect-v8-coverage 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/collect-v8-coverage 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@bcoe%2fv8-coverage 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map-support 10ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-reports 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-format 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-circus 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-bom 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/stack-utils 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-environment-jsdom 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/execa 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/throat 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fstack-utils 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-environment-node 107ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-docblock 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-jasmine2 118ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-format 116ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/execa 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-leak-detector 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-environment-jsdom 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftest-sequencer 144ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fenvironment 92ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-environment-node 90ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/expect 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-mock 96ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cjs-module-lexer 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ffake-timers 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fprettier 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fenvironment 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/leven 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-diff 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-matcher-utils 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fglobals 141ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fsource-map 144ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/once 40ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/inflight 45ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/fs.realpath 45ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/html-escaper 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/inherits 52ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/char-regex 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-is-absolute 66ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/supports-hyperlinks 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/wrappy 33ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/wrappy 49ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/signal-exit 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/strip-final-newline 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/npm-run-path 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/onetime 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-stream 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-stream 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/human-signals 96ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mimic-fn 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escalade 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/string-width 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-caller-file 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/y18n 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yargs-parser 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cliui 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/require-directory 79ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-is 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/co 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/co 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-generator-fn 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-each 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-each 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsdom 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dedent 106ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-generator-fn 123ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@sinonjs%2ffake-timers 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@sinonjs%2fcommons 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-detect 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/canvas 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ws 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/escodegen 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/decimal.js 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssom 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/data-urls 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/w3c-hr-time 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn-globals 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tough-cookie 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/form-data 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/nwsapi 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parse5 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-url 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-mimetype 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/saxes 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-proxy-agent 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webidl-conversions 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssstyle 79ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/w3c-xmlserializer 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domexception 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-encoding 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/xml-name-validator 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/html-encoding-sniffer 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/https-proxy-agent 93ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-potential-custom-element-name 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/symbol-tree 175ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/picomatch 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/makeerror 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bser 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/node-int64 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/diff-sequences 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-resolve 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/buffer-from 37ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/detect-newline 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emittery 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/jest-util 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/char-regex 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftypes 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftest-result 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/ansi-regex 10ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/sprintf-js 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bufferutil 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/utf-8-validate 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/iconv-lite 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/cssom 12ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/punycode 12ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-url 14ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/webidl-conversions 14ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/mime-types 15ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/combined-stream 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn-walk 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/psl 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tr46 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/agent-base 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/xmlchars 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/browser-process-hrtime 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/agent-base 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/url-parse 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/asynckit 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@tootallnate%2fonce 105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/delayed-stream 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mime-db 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escodegen 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/p-limit 35ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fill-range 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/to-regex-range 35ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-number 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/concat-map 34ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/balanced-match 43ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/p-try 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lower-case 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-arrayish 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssesc 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/util-deprecate 52ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/lodash.uniq 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash.memoize 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-progressive-custom-properties 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-progressive-custom-properties 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fpostcss-progressive-custom-properties 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/fraction.js 33ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/normalize-range 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fselector-specificity 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fselector-specificity 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools%2fselector-specificity 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/csso 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/css-tree 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/css-select 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@trysound%2fsax 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dom-converter 36ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/htmlparser2 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/performance-now 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/asap 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/typescript 16ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/vue-template-compiler 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/cosmiconfig 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/chokidar 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/is-docker 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/duplexer 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-lazy-prop 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-wsl 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/memfs 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/global-prefix 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/readdirp 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fs-monkey 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/at-least-node 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-binary-path 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/binary-extensions 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/kind-of 34ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ini 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-finalizationregistry 36ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-generator-function 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which-collection 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-async-function 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unicode-canonical-property-names-ecmascript 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unicode-property-aliases-ecmascript 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/utila 34ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domhandler 35ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domutils 36ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domhandler 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/boolbase 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/entities 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domutils 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/nth-check 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domelementtype 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-what 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domelementtype 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/domelementtype 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/dom-serializer 33ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regex-parser 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/ajv 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/require-from-string 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-uri 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/safe-buffer 37ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/safer-buffer 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/optionator 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/domutils 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/nth-check 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/css-what 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/mdn-data 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.getownpropertydescriptors 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/q 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fq 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mdn-data 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/yaml 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/mz 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/camelcase-css 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ts-interface-checker 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/read-cache 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pify 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/package-json-from-dist 36ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/any-promise 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-scurry 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/foreground-child 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/minipass 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/thenify-all 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jackspeak 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/thenify 120ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/querystringify 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/requires-port 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-boolean-object 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-number-object 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-bigint 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.reduce 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-array-method-boxes-properly 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tmpl 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fwasm-parser 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fieee754 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fhelper-api-error 59ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-section 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fhelper-numbers 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fwasm-opt 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2futf8 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fleb128 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fwast-printer 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fwasm-gen 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fhelper-buffer 97ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode 99ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs%2ffloating-point-hex-parser 86ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@xtuc%2flong 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@xtuc%2fieee754 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/utf-8-validate 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/webpack 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fserve-static 12ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/multicast-dns 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/depd 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/etag 49ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bytes 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fqs 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/compressible 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/on-headers 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/vary 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fexpress-serve-static-core 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fhttp-errors 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fsend 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/qs 72ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fbody-parser 75ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/negotiator 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/vary 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/send 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fexpress-serve-static-core 88ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cookie 81ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/accepts 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fresh 95ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/statuses 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/proxy-addr 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-errors 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/encodeurl 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-is 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/on-finished 48ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/methods 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/body-parser 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/utils-merge 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parseurl 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/serve-static 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/accepts 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/content-type 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parseurl 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/array-flatten 57ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-plain-obj 36ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-errors 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/finalhandler 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/content-disposition 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-to-regexp 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-html 94ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/merge-descriptors 64ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/setprototypeof 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/range-parser 86ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cookie-signature 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/retry 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-proxy 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/range-parser 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/faye-websocket 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/batch 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fhttp-proxy 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fretry 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/node-forge 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-deceiver 36ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-html 66ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/spdy-transport 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/select-hose 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/uuid 62ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/handle-thing 67ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/websocket-driver 74ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fnode-forge 167ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2frange-parser 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fconnect 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fmime 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dns-packet 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/thunky 98ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/negotiator 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/ipaddr.js 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/encodeurl 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/content-type 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/ee-first 38ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/raw-body 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/destroy 42ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/destroy 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/forwarded 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/media-typer 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unpipe 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unpipe 53ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/toidentifier 55ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mime 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/follow-redirects 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eventemitter3 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@leichtgewicht%2fip-codec 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/statuses 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/depd 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/setprototypeof 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/websocket-driver 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/websocket-extensions 40ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-parser-js 58ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/detect-node 33ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/hpack.js 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/readable-stream 42ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/obuf 47ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/wbuf 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/obuf 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/wbuf 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/minimalistic-assert 33ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string_decoder 39ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/core-util-is 51ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/process-nextick-args 53ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/source-list-map 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-set 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-map 46ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-weakmap 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-weakset 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-list-map 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/ajv 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/strip-comments 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-streams 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-recipes 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-strategies 73ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tempy 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-sw 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stringify-object 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup%2fplugin-babel 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-precaching 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-expiration 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-core 86ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/common-tags 88ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/rollup-plugin-terser 87ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-window 89ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-background-sync 80ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-range-requests 96ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-navigation-preload 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-broadcast-update 83ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-routing 127ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-google-analytics 76ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@apideck%2fbetter-ajv-errors 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup%2fplugin-replace 145ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup%2fplugin-node-resolve 91ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@surma%2frollup-plugin-off-main-thread 109ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-cacheable-response 130ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/rollup 245ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fbabel__core 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/jsonpointer 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ejs 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-obj 50ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-module 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/magic-string 54ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-own-enumerable-property-symbols 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/temp-dir 60ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-schema 69ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-regexp 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unique-string 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup%2fpluginutils 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/magic-string 82ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup%2fpluginutils 85ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/builtin-modules 93ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fresolve 98ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/idb 100ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup%2fpluginutils 126ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2ftrusted-types 140ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/idb 142ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/rollup 8ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/estree-walker 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sourcemap-codec 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jake 70ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/filelist 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/async 44ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/crypto-random-string 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emoji-regex 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point 35ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/wrap-ansi 56ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-locate 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/p-limit 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/yocto-queue 45ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fyargs 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fconsole 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fschemas 137ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-message-util 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/pretty-format 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@sinclair%2ftypebox 107ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-is 9ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/path-exists 1ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/levn 5ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/type-check 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/prelude-ls 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/lru-cache 3ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/@pkgjs%2fparseargs 77ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@isaacs%2fcliui 506ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string-width 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/string-width 6ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/wrap-ansi 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/wrap-ansi 7ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/eastasianwidth 51ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dom-serializer 2ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/tr46 4ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/lodash.sortby 51ms (cache miss)
⠏
y
y
npm verbose reify failed optional dependency /home/dave/code/react-app/node_modules/fsevents
npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
npm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz 431ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz 434ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz 434ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz 434ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz 432ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz 442ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz 444ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz 449ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz 458ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz 466ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz 467ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz 469ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz 467ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz 464ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz 465ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz 471ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz 472ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz 482ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz 475ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz 491ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz 492ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz 494ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz 500ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz 505ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz 505ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz 514ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz 517ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz 518ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz 523ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz 533ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz 525ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz 528ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz 528ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz 539ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz 535ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz 537ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz 550ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz 545ms (cache miss)
npm warn deprecated sourcemap-codec@1.4.8: Please use @jridgewell/sourcemap-codec instead
npm http fetch GET 200 https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz 548ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz 554ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz 560ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz 558ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz 557ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz 580ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz 574ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/idb/-/idb-7.1.1.tgz 581ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz 585ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz 594ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz 616ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz 635ms (cache miss)
npm warn deprecated rollup-plugin-terser@7.0.2: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
npm http fetch GET 200 https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz 650ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jake/-/jake-10.9.2.tgz 662ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz 661ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz 665ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz 666ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz 664ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz 666ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz 666ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz 668ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz 673ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz 676ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz 676ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz 680ms (cache miss)
npm warn deprecated workbox-google-analytics@6.6.0: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained
npm http fetch GET 200 https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz 684ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz 678ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz 679ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz 678ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz 684ms (cache miss)
npm warn deprecated workbox-cacheable-response@6.6.0: workbox-background-sync@6.6.0
npm http fetch GET 200 https://registry.npmjs.org/upath/-/upath-1.2.0.tgz 684ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz 685ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz 696ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz 702ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz 698ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz 708ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz 714ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz 713ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz 723ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz 729ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz 730ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz 733ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz 734ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz 735ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz 735ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz 739ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz 748ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz 744ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz 744ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz 747ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz 749ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/batch/-/batch-0.6.1.tgz 751ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz 755ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz 766ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz 772ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/retry/-/retry-0.13.1.tgz 770ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mime/-/mime-1.6.0.tgz 780ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz 782ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz 781ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz 782ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz 784ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz 792ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz 786ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz 787ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz 790ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz 788ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz 792ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz 796ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz 810ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz 803ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz 806ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz 808ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz 813ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz 811ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz 816ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz 818ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz 822ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/send/-/send-0.19.0.tgz 822ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz 834ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz 827ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz 829ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz 832ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz 829ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz 828ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz 832ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz 833ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz 840ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz 846ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz 856ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz 857ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz 859ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/etag/-/etag-1.8.1.tgz 858ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz 860ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz 862ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz 861ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz 862ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz 864ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz 867ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz 871ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/depd/-/depd-2.0.0.tgz 871ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz 872ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz 893ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/methods/-/methods-1.1.2.tgz 889ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-6.13.0.tgz 891ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz 889ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz 890ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz 891ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz 895ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz 895ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz 896ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz 897ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz 896ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz 896ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz 900ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz 901ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz 915ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz 909ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz 927ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/async/-/async-3.2.6.tgz 934ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/vary/-/vary-1.1.2.tgz 926ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz 929ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz 936ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz 941ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz 947ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/qs/-/qs-6.9.16.tgz 954ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz 967ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz 957ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz 962ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz 961ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz 965ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz 965ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz 962ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.1.tgz 963ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz 963ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz 963ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/compression/-/compression-1.7.5.tgz 965ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz 985ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz 970ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz 974ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz 976ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz 980ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz 982ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz 996ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/express/-/express-4.21.1.tgz 986ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz 991ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz 994ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz 995ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz 996ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz 1001ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz 1003ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz 1003ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz 1020ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz 1006ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz 1007ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz 1010ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz 1010ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz 1016ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz 1034ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz 1022ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz 1023ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz 1029ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz 1031ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz 1031ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz 1035ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz 1037ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz 1039ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz 1050ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz 1049ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz 1050ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz 1055ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz 1062ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz 1077ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz 1079ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/events/-/events-3.3.0.tgz 1081ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz 1082ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz 1083ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz 1083ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz 1083ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz 1083ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz 1085ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz 1088ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz 1097ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz 1099ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz 1101ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz 1104ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz 1104ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz 1105ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz 1112ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz 1112ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz 1112ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz 1115ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/psl/-/psl-1.9.0.tgz 1130ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz 1131ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz 1133ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz 1140ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz 1144ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz 1144ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz 1144ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz 1147ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz 1153ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mz/-/mz-2.7.0.tgz 1161ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz 1161ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz 1162ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz 1162ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz 1163ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz 1170ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz 1175ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz 1184ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz 1187ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz 1187ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/arg/-/arg-5.0.2.tgz 1204ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz 1204ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz 1204ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz 1205ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz 1205ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz 1205ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz 1205ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz 1212ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz 1216ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz 1220ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stable/-/stable-0.1.8.tgz 1221ms (cache miss)
npm warn deprecated stable@0.1.8: Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility
npm http fetch GET 200 https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz 1225ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sax/-/sax-1.2.4.tgz 1227ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pify/-/pify-2.3.0.tgz 1230ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz 1230ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz 1243ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/q/-/q-1.5.1.tgz 1244ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz 1244ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz 1245ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz 1244ms (cache miss)
npm warn deprecated q@1.5.1: You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
npm warn deprecated
npm warn deprecated (For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
npm http fetch GET 200 https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz 1245ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz 1254ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz 1256ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz 1263ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz 1263ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz 1268ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz 1276ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz 1281ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz 1282ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz 1284ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz 1289ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz 1293ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/entities/-/entities-2.2.0.tgz 1295ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz 1295ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz 1297ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz 1303ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz 1304ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/csso/-/csso-4.2.0.tgz 1311ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz 1311ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/coa/-/coa-2.0.2.tgz 1311ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz 1312ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz 1318ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz 1321ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz 1324ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz 1325ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz 1329ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz 1327ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz 1328ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz 1330ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz 1333ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz 1350ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz 1352ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz 1353ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regjsparser/-/regjsparser-0.11.2.tgz 1355ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz 1357ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz 1356ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ini/-/ini-1.3.8.tgz 1358ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz 1361ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz 1361ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/utila/-/utila-0.4.0.tgz 1365ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz 1365ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz 1370ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz 1379ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz 1380ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz 1395ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/open/-/open-8.4.2.tgz 1395ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz 1396ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz 1396ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz 1405ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz 1407ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz 1409ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz 1412ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz 1416ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz 1415ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz 1419ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz 1420ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz 1420ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/asap/-/asap-2.0.6.tgz 1427ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/address/-/address-1.2.2.tgz 1441ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz 1445ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/promise/-/promise-8.3.0.tgz 1447ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz 1451ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz 1450ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/raf/-/raf-3.4.1.tgz 1452ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz 1455ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz 1461ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz 1462ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz 1467ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz 1468ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz 1470ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz 1476ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz 1478ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/immer/-/immer-9.0.21.tgz 1483ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz 1495ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz 1482ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz 1482ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz 1484ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz 1487ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz 1489ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz 1506ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz 1508ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz 1508ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz 1509ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz 1510ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz 1510ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz 1514ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz 1518ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz 1521ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz 1520ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz 1526ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz 1524ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz 1527ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz 1527ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz 1531ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz 1541ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz 1538ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz 1539ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz 1542ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz 1541ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz 1543ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz 1551ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz 1550ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz 1550ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz 1562ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz 1570ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssdb/-/cssdb-7.11.2.tgz 1571ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz 1575ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz 1594ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz 1592ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz 1598ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz 1599ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz 1600ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz 1600ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz 1604ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz 1608ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz 1611ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz 1612ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz 1630ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz 1632ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz 1637ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/klona/-/klona-2.0.6.tgz 1639ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz 1639ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz 1640ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz 1641ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz 1640ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz 1648ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz 1653ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz 1654ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz 1657ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz 1664ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz 1664ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.1.1.tgz 1667ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz 1666ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz 1671ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz 1677ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz 1678ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz 1681ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/colord/-/colord-2.9.3.tgz 1682ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz 1688ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz 1690ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz 1696ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz 1695ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz 1696ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz 1696ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz 1697ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz 1698ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz 1700ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz 1709ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz 1724ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz 1724ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz 1724ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz 1724ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz 1732ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/braces/-/braces-3.0.3.tgz 1734ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz 1737ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz 1738ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz 1746ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz 1747ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz 1747ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz 1751ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz 1753ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz 1765ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz 1769ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz 1780ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz 1779ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz 1781ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz 1782ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz 1782ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ws/-/ws-7.5.10.tgz 1782ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz 1785ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz 1789ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz 1790ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz 1796ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz 1800ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz 1804ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz 1806ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz 1812ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz 1813ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz 1819ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz 1821ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz 1826ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz 1825ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz 1827ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz 1827ms (cache miss)
npm warn deprecated w3c-hr-time@1.0.2: Use your platform's native performance.now() and performance.timeOrigin.
npm http fetch GET 200 https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz 1830ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz 1839ms (cache miss)
npm warn deprecated domexception@2.0.1: Use your platform's native DOMException instead
npm http fetch GET 200 https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz 1841ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz 1843ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz 1844ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz 1855ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz 1855ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz 1857ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz 1863ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz 1865ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz 1872ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz 1872ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/abab/-/abab-2.0.6.tgz 1879ms (cache miss)
npm warn deprecated abab@2.0.6: Use your platform's native atob() and btoa() methods instead
npm http fetch GET 200 https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz 1885ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz 1885ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/leven/-/leven-3.1.0.tgz 1887ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz 1887ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz 1892ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz 1893ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz 1894ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz 1896ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz 1896ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz 1897ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz 1900ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz 1908ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz 1909ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bser/-/bser-2.1.1.tgz 1910ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz 1923ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz 1923ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz 1924ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz 1924ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz 1926ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz 1931ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz 1934ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz 1934ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz 1936ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/walker/-/walker-1.0.8.tgz 1937ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz 1938ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz 1942ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz 1947ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz 1950ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz 1960ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz 1965ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz 1965ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz 1966ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz 1975ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/co/-/co-4.6.0.tgz 1974ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/expect/-/expect-27.5.1.tgz 1980ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz 1980ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz 1997ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz 1991ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz 1993ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz 1993ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz 1994ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz 1995ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz 2009ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz 2009ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz 2010ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz 2015ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz 2017ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz 2020ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz 2023ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz 2024ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz 2028ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/throat/-/throat-6.0.2.tgz 2029ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz 2041ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/execa/-/execa-5.1.1.tgz 2043ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz 2047ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz 2046ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz 2047ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz 2047ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz 2052ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz 2050ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz 2057ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz 2060ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz 2059ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz 2064ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz 2065ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz 2070ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz 2079ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz 2080ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz 2085ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz 2088ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz 2092ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz 2097ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz 2096ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz 2100ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/exit/-/exit-0.1.2.tgz 2099ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz 2103ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz 2111ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz 2112ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz 2111ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz 2115ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz 2123ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz 2125ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz 2130ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz 2131ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz 2134ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz 2141ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz 2141ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz 2145ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz 2146ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz 2153ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz 2155ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz 2162ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz 2162ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz 2165ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz 2165ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz 2172ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/he/-/he-1.2.0.tgz 2172ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz 2179ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz 2193ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz 2194ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz 2199ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz 2204ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz 2202ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz 2203ms (cache miss)
npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
npm http fetch GET 200 https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz 2211ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-8.3.0.tgz 2216ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz 2216ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz 2215ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz 2218ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz 2220ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz 2219ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz 2220ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz 2221ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz 2227ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz 2228ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz 2229ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz 2230ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.3.tgz 2242ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz 2248ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz 2249ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz 2250ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz 2254ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz 2261ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz 2263ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz 2265ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz 2267ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz 2267ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz 2269ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz 2277ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz 2285ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz 2286ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz 2289ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz 2288ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz 2291ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/eslint/-/eslint-8.56.12.tgz 2298ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz 2300ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz 2305ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz 2320ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz 2321ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz 2322ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz 2322ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz 2323ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz 2324ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz 2325ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz 2326ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz 2335ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz 2335ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz 2336ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz 2342ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz 2347ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz 2348ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz 2350ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz 2353ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz 2356ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz 2368ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz 2370ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz 2376ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/terser/-/terser-5.36.0.tgz 2388ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz 2387ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz 2388ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz 2389ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz 2391ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz 2391ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz 2394ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz 2395ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz 2398ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz 2397ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz 2398ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz 2399ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz 2400ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz 2400ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz 2402ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz 2406ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz 2411ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz 2417ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz 2419ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz 2422ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz 2428ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz 2430ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz 2432ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz 2435ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz 2444ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz 2437ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz 2437ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz 2442ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz 2446ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz 2449ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz 2453ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz 2457ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz 2459ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz 2462ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz 2467ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz 2470ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz 2477ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz 2470ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz 2474ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz 2484ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz 2480ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz 2483ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz 2484ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz 2485ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz 2490ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz 2493ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globby/-/globby-11.1.0.tgz 2505ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz 2507ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz 2507ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.0.tgz 2518ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz 2513ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz 2516ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz 2517ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz 2524ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz 2526ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz 2532ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz 2566ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz 2558ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/axe-core/-/axe-core-4.10.2.tgz 2575ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz 2574ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz 2574ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz 2592ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz 2596ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz 2629ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz 2608ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz 2612ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz 2612ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz 2616ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz 2623ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz 2634ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz 2637ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz 2637ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz 2642ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/levn/-/levn-0.4.1.tgz 2650ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz 2657ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz 2660ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz 2665ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz 2667ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz 2666ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz 2667ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz 2669ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz 2674ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz 2674ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz 2682ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz 2683ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz 2686ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz 2695ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz 2699ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz 2707ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz 2708ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz 2715ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz 2721ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz 2721ms (cache miss)
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm http fetch GET 200 https://registry.npmjs.org/espree/-/espree-9.6.1.tgz 2719ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz 2736ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz 2736ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz 2739ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz 2743ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz 2743ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz 2745ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.1.3.tgz 2747ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz 2752ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz 2755ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz 2757ms (cache miss)
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm http fetch GET 200 https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz 2758ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz 2760ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz 2762ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz 2770ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz 2773ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz 2780ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz 2784ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz 2786ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz 2792ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz 2797ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz 2794ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz 2795ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz 2800ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz 2804ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz 2806ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz 2807ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz 2819ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz 2811ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz 2814ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz 2815ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz 2828ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz 2823ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz 2846ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz 2848ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz 2852ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz 2855ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz 2855ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz 2862ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz 2868ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz 2879ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz 2882ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz 2882ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz 2883ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz 2884ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz 2889ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz 2891ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz 2893ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz 2894ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz 2894ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz 2894ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.4.tgz 2909ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz 2901ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz 2904ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz 2910ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz 2913ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz 2912ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz 2914ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz 2916ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz 2918ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz 2921ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz 2925ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz 2926ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz 2927ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz 2933ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz 2931ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz 2934ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz 2937ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.51.tgz 2945ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz 2974ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz 2973ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz 2970ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz 2979ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz 2984ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz 2991ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz 2992ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz 2993ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz 2992ms (cache miss)
npm warn deprecated @babel/plugin-proposal-private-methods@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz 2993ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz 2994ms (cache miss)
npm warn deprecated @babel/plugin-proposal-optional-chaining@7.21.0: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz 2993ms (cache miss)
npm warn deprecated @babel/plugin-proposal-nullish-coalescing-operator@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz 2996ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz 3000ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz 2998ms (cache miss)
npm warn deprecated @babel/plugin-proposal-class-properties@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz 3000ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.9.tgz 3003ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz 3006ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz 3024ms (cache miss)
npm warn deprecated @babel/plugin-proposal-numeric-separator@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz 3028ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz 3036ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz 3038ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz 3042ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz 3048ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz 3045ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz 3045ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz 3049ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz 3050ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz 3051ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz 3057ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz 3060ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz 3061ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz 3085ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz 3066ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz 3066ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz 3075ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz 3078ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz 3079ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz 3086ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz 3092ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz 3093ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz 3093ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz 3094ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz 3108ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz 3103ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz 3102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz 3110ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz 3112ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz 3136ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz 3121ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz 3125ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz 3125ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz 3131ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz 3138ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz 3140ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz 3139ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz 3150ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz 3150ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz 3155ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz 3156ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz 3157ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz 3161ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz 3168ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/slash/-/slash-3.0.0.tgz 3169ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz 3171ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz 3172ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz 3173ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz 3189ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz 3197ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz 3199ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz 3197ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz 3220ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz 3203ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz 3216ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz 3244ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz 3225ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz 3226ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz 3229ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz 3231ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz 3231ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz 3231ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz 3232ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz 3233ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz 3234ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz 3240ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz 3247ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz 3255ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz 3256ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz 3274ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz 3275ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz 3285ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz 3286ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.9.tgz 3286ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz 3290ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.1.1.tgz 3292ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz 3302ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz 3301ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz 3302ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz 3303ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz 3304ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz 3310ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz 3308ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz 3313ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz 3316ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz 3321ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz 3323ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.9.tgz 3325ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz 3326ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz 3333ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz 3350ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz 3340ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz 3345ms (cache miss)
npm warn deprecated svgo@1.3.2: This SVGO version is no longer supported. Upgrade to v2.x.x.
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz 3349ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz 3351ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz 3363ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz 3365ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz 3383ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz 3382ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz 3385ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz 3386ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz 3387ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz 3387ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz 3387ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz 3390ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz 3391ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz 3398ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz 3398ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz 3401ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz 3402ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz 3406ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz 3407ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.2.tgz 3443ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz 3414ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz 3423ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz 3426ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz 3427ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz 3429ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz 3435ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.9.tgz 3441ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz 3442ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz 3443ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/node/-/node-22.9.0.tgz 3458ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz 3454ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz 3456ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz 3455ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz 3458ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz 3469ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz 3474ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz 3474ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.25.9.tgz 3478ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz 3479ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz 3483ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz 3492ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz 3493ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz 3502ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz 3501ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz 3503ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz 3514ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz 3518ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz 3532ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz 3535ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz 3535ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz 3536ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz 3571ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz 3540ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz 3539ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz 3540ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz 3541ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz 3541ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz 3556ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz 3558ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz 3561ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz 3567ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz 3568ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz 3575ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz 3577ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz 3585ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz 3609ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz 3611ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz 3614ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz 3617ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz 3616ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz 3617ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz 3618ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz 3621ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.25.9.tgz 3620ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz 3664ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz 3632ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz 3635ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz 3635ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz 3638ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz 3639ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz 3638ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz 3658ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz 3662ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globals/-/globals-11.12.0.tgz 3664ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz 3665ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz 3667ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz 3671ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz 3670ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz 3671ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.2.tgz 3671ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-4.3.7.tgz 3671ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz 3677ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz 3681ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json5/-/json5-2.2.3.tgz 3688ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz 3708ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz 3717ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz 3725ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz 3732ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz 3736ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz 3744ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/core-js/-/core-js-3.39.0.tgz 3829ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz 3748ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz 3771ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz 3781ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz 3783ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz 3782ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz 3785ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz 3784ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz 3786ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz 3789ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz 3793ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz 3806ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz 3816ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest/-/jest-27.5.1.tgz 3817ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz 3825ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz 3827ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz 3829ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz 3829ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz 3831ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz 3833ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz 3836ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz 3835ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz 3836ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz 3838ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz 3844ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz 3851ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz 3854ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz 3859ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz 3871ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.2.tgz 3868ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz 3873ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz 3877ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz 3886ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz 3887ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz 3887ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz 3890ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz 3900ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz 3900ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz 3903ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz 3901ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz 3904ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz 3904ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz 3917ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz 3925ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz 3927ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz 3941ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz 3948ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cra-template/-/cra-template-1.2.0.tgz 3951ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz 3951ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz 3951ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz 3951ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz 3958ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz 3957ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz 3957ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz 3961ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz 3969ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz 3984ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz 3993ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz 3991ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz 3995ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz 4001ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz 4010ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react/-/react-18.3.1.tgz 4008ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz 4014ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/depd/-/depd-1.1.2.tgz 4017ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz 4017ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz 4019ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz 4023ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz 4029ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz 4023ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz 4032ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz 4041ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz 4040ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz 4041ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz 4047ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz 4059ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz 4060ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz 4078ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz 4070ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/which/-/which-1.3.1.tgz 4081ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz 4082ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz 4086ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz 4087ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz 4087ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz 4092ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz 4097ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz 4102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz 4102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz 4106ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz 4113ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz 4113ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz 4129ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz 4131ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz 4135ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz 4135ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz 4152ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/levn/-/levn-0.3.0.tgz 4159ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz 4164ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz 4164ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz 4169ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz 4177ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz 4177ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz 4188ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz 4188ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz 4185ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz 4189ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz 4195ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz 4202ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz 4211ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-2.20.3.tgz 4217ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz 4217ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz 4218ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz 4225ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-3.2.7.tgz 4226ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz 4226ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz 4235ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz 4237ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz 4243ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-3.2.7.tgz 4246ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz 4246ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz 4251ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4250ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-3.2.7.tgz 4250ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json5/-/json5-1.0.2.tgz 4258ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz 4267ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz 4276ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz 4276ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4276ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4276ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz 4282ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz 4283ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz 4283ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz 4290ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globals/-/globals-13.24.0.tgz 4299ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz 4305ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4305ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4305ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4305ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz 4310ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz 4317ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz 4320ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz 4325ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz 4327ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-7.2.0.tgz 4337ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz 4338ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz 4337ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz 4341ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz 4347ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz 4347ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz 4352ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz 4358ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz 4359ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz 4412ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4363ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz 4359ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz 4359ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz 4360ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz 4365ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz 4374ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4369ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz 4369ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4377ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz 4373ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4382ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz 4395ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4399ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4399ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4399ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz 4402ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz 4399ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz 4402ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz 4406ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz 4426ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz 4432ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz 4429ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz 4429ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz 4435ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz 4436ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz 4440ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz 4439ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz 4440ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-10.4.5.tgz 4451ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4453ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4453ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz 4448ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz 4449ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/slash/-/slash-3.0.0.tgz 4451ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz 4454ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz 4485ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz 4469ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz 4472ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz 4476ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz 4476ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz 4479ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz 4479ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz 4485ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz 4482ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4494ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4494ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4494ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4494ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz 4491ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/slash/-/slash-4.0.0.tgz 4495ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/slash/-/slash-3.0.0.tgz 4501ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz 4506ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz 4506ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4514ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz 4510ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz 4514ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz 4515ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz 4516ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz 4520ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz 4522ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz 4532ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz 4527ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz 4537ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz 4540ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz 4536ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz 4533ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz 4542ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/globals/-/globals-13.24.0.tgz 4540ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz 4543ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz 4551ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.1.tgz 4548ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz 4553ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4562ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4563ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz 4564ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz 4564ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz 4578ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz 4579ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz 4579ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz 4595ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz 4601ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ws/-/ws-8.18.0.tgz 4602ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4604ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4605ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz 4610ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4616ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz 4634ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz 4645ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz 4636ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 4647ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz 4672ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001677.tgz 4713ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz 4704ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz 4700ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz 4708ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz 4726ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz 4743ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz 4748ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz 4785ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz 4963ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz 4918ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.14.tgz 4928ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz 4929ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz 4950ms (cache miss)
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.
npm http fetch GET 200 https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz 4944ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/webpack/-/webpack-5.96.1.tgz 5046ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz 5103ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.39.0.tgz 5242ms (cache miss)
npm info run core-js@3.39.0 postinstall node_modules/core-js node -e "try{require('./postinstall')}catch(e){}"
npm info run core-js-pure@3.39.0 postinstall node_modules/core-js-pure node -e "try{require('./postinstall')}catch(e){}"
npm info run core-js-pure@3.39.0 postinstall { code: 0, signal: null }
npm info run core-js@3.39.0 postinstall { code: 0, signal: null }
added 1312 packages in 6h
259 packages are looking for funding
run `npm fund` for details
npm verbose cwd /home/dave/code/react-app
npm verbose os Linux 5.15.153.1-microsoft-standard-WSL2
npm verbose node v22.11.0
npm verbose npm v10.9.0
npm verbose exit 0
npm info ok
Initialized a git repository.
Installing template dependencies using npm...
npm verbose cli /home/dave/.nvm/versions/node/v22.11.0/bin/node /home/dave/.nvm/versions/node/v22.11.0/bin/npm
npm info using npm@10.9.0
npm info using node@v22.11.0
npm verbose title npm install @testing-library/jest-dom@^5.14.1 @testing-library/react@^13.0.0 @testing-library/user-event@^13.2.1 web-vitals@^2.1.0
npm verbose argv "install" "--no-audit" "--save" "--loglevel" "verbose" "@testing-library/jest-dom@^5.14.1" "@testing-library/react@^13.0.0" "@testing-library/user-event@^13.2.1" "web-vitals@^2.1.0"
npm verbose logfile logs-max:10 dir:/home/dave/.npm/_logs/2024-11-05T21_02_31_407Z-
npm verbose logfile /home/dave/.npm/_logs/2024-11-05T21_02_31_407Z-debug-0.log
npm http fetch GET 200 https://registry.npmjs.org/@testing-library%2fjest-dom 256ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library%2freact 78ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/react 202ms (cache updated)
npm http fetch GET 200 https://registry.npmjs.org/react-dom 342ms (cache updated)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library%2fuser-event 182ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library%2fdom 94ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/web-vitals 39ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library%2fdom 13ms (cache hit)
npm http fetch GET 200 https://registry.npmjs.org/redent 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chalk 81ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/css.escape 84ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/aria-query 91ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/lz-string 101ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2ftesting-library__jest-dom 102ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dom-accessibility-api 103ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dom-accessibility-api 106ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2faria-query 108ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2freact-dom 109ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@adobe%2fcss-tools 141ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dequal 52ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/strip-indent 35ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/indent-string 68ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fjest 71ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2freact 93ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/csstype 61ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fprop-types 63ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-format 38ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/expect 70ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/jest-matcher-utils 42ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/jest-util 52ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/jest-get-type 55ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/jest-message-util 56ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fexpect-utils 65ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2fschemas 65ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/ansi-styles 111ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/react-is 164ms (cache updated)
npm http fetch GET 200 https://registry.npmjs.org/typescript 67ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/min-indent 34ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/deep-equal 37ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-arguments 35ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-is 36ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-get-iterator 43ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stop-iteration-iterator 41ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-diff 49ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftypes 74ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@jest%2ftypes 105ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/diff-sequences 50ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@types%2fyargs 65ms (cache revalidated)
npm http fetch GET 200 https://registry.npmjs.org/@sinclair%2ftypebox 68ms (cache revalidated)
npm verbose reify failed optional dependency /home/dave/code/react-app/node_modules/fsevents
npm http fetch GET 200 https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz 188ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz 189ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz 208ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz 223ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz 224ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz 225ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/redent/-/redent-3.0.0.tgz 225ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz 236ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz 240ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz 239ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz 241ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz 245ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz 250ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz 256ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz 258ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz 257ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz 263ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz 259ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz 273ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz 268ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.1.tgz 274ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz 279ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz 276ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz 283ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz 278ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz 285ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz 295ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/expect/-/expect-29.7.0.tgz 296ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz 298ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz 303ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz 310ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz 321ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz 326ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz 341ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz 355ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz 354ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz 357ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz 383ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz 391ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz 393ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz 404ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.1.tgz 406ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz 414ms (cache miss)
npm http fetch GET 200 https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz 645ms (cache miss)
added 46 packages, and changed 1 package in 4h
263 packages are looking for funding
run `npm fund` for details
npm verbose cwd /home/dave/code/react-app
npm verbose os Linux 5.15.153.1-microsoft-standard-WSL2
npm verbose node v22.11.0
npm verbose npm v10.9.0
npm verbose exit 0
npm info ok
Removing template package using npm...
removed 1 package, and audited 1358 packages in 3s
263 packages are looking for funding
run `npm fund` for details
8 vulnerabilities (2 moderate, 6 high)
To address all issues (including breaking changes), run:
npm audit fix --force
Run `npm audit` for details.
Git commit not created Error: Command failed: git commit -m "Initialize project using Create React App"
at genericNodeError (node:internal/errors:983:15)
at wrappedFn (node:internal/errors:537:14)
at checkExecSyncError (node:child_process:888:11)
at execSync (node:child_process:960:15)
at tryGitCommit (/home/dave/code/react-app/node_modules/react-scripts/scripts/init.js:62:5)
at module.exports (/home/dave/code/react-app/node_modules/react-scripts/scripts/init.js:350:25)
at [eval]:3:14
at runScriptInThisContext (node:internal/vm:209:10)
at node:internal/process/execution:118:14
at [eval]-wrapper:6:24 {
status: 128,
signal: null,
output: [ null, null, null ],
pid: 3722,
stdout: null,
stderr: null
}
Removing .git directory...
Success! Created react-app at /home/dave/code/react-app
Inside that directory, you can run several commands:
npm start
Starts the development server.
npm run build
Bundles the app into static files for production.
npm test
Starts the test runner.
npm run eject
Removes this tool and copies build dependencies, configuration files
and scripts into the app directory. If you do this, you can’t go back!
We suggest that you begin by typing:
cd react-app
npm start
Happy hacking!