=== System Info === Linux beeservers 6.8.0-79-generic #79-Ubuntu SMP PREEMPT_DYNAMIC Tue Aug 12 14:42:46 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux PRETTY_NAME="Ubuntu 24.04.3 LTS" NAME="Ubuntu" VERSION_ID="24.04" VERSION="24.04.3 LTS (Noble Numbat)" VERSION_CODENAME=noble ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" UBUNTU_CODENAME=noble LOGO=ubuntu-logo PHP 8.4.12 (cli) (built: Aug 29 2025 06:48:12) (NTS) Copyright (c) The PHP Group Built by Debian Zend Engine v4.4.12, Copyright (c) Zend Technologies with Zend OPcache v8.4.12, Copyright (c), by Zend Technologies v20.19.5 1.22.22 10.8.2 === TypeScript / React / Blueprint === yarn list v1.22.22 warning Filtering by arguments is deprecated. Please use the pattern option instead. ├─ @types/react-dom@16.9.25 ├─ @types/react-router-dom@5.3.3 ├─ @types/react-router@5.1.20 ├─ @types/react@16.14.66 ├─ react-dom@16.14.0 ├─ react-router-dom@5.3.4 ├─ react@16.14.0 └─ styled-components@5.3.11 Done in 0.19s. === tsconfig / webpack config === { "compilerOptions": { "target": "es2018", "module": "es2020", "jsx": "react", "lib": ["es2018", "dom"], "strict": true, "noEmit": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "typeRoots": ["node_modules/@types"], "types": ["node"] }, "include": ["./resources/scripts/**/*"] } const path = require('path'); const webpack = require('webpack'); const AssetsManifestPlugin = require('webpack-assets-manifest'); const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); const TerserPlugin = require('terser-webpack-plugin'); const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; const isProduction = process.env.NODE_ENV === 'production'; module.exports = { cache: true, target: 'web', mode: process.env.NODE_ENV, devtool: isProduction ? false : (process.env.DEVTOOL || 'eval-source-map'), performance: { hints: false, }, entry: ['react-hot-loader/patch', './resources/scripts/index.tsx'], output: { path: path.join(__dirname, '/public/assets'), filename: isProduction ? 'bundle.[chunkhash:8].js' : 'bundle.[hash:8].js', chunkFilename: isProduction ? '[name].[chunkhash:8].js' : '[name].[hash:8].js', publicPath: (process.env.WEBPACK_PUBLIC_PATH || '/assets/'), crossOriginLoading: 'anonymous', }, module: { rules: [ { test: /\.tsx?$/, exclude: /node_modules|\.spec\.tsx?$/, loader: 'babel-loader', }, { test: /\.mjs$/, include: /node_modules/, type: 'javascript/auto', }, { test: /\.css$/, use: [ { loader: 'style-loader' }, { loader: 'css-loader', options: { modules: { auto: true, localIdentName: isProduction ? '[name]_[hash:base64:8]' : '[path][name]__[local]', localIdentContext: path.join(__dirname, 'resources/scripts/components'), }, sourceMap: !isProduction, importLoaders: 1, }, }, { loader: 'postcss-loader', options: { sourceMap: !isProduction }, }, ], }, { test: /\.(png|jp(e?)g|gif)$/, loader: 'file-loader', options: { name: 'images/[name].[hash:8].[ext]', }, }, { test: /\.svg$/, loader: 'svg-url-loader', }, { test: /\.js$/, enforce: 'pre', loader: 'source-map-loader', } ], }, stats: { // Ignore warnings emitted by "source-map-loader" when trying to parse source maps from // JS plugins we use, namely brace editor. warningsFilter: [/Failed to parse source map/], }, resolve: { extensions: ['.ts', '.tsx', '.js', '.json'], alias: { '@': path.join(__dirname, '/resources/scripts'), '@definitions': path.join(__dirname, '/resources/scripts/api/definitions'), '@feature': path.join(__dirname, '/resources/scripts/components/server/features'), }, symlinks: false, }, externals: { // Mark moment as an external to exclude it from the Chart.js build since we don't need to use // it for anything. moment: 'moment', }, plugins: [ new webpack.EnvironmentPlugin({ NODE_ENV: 'development', DEBUG: process.env.NODE_ENV !== 'production', WEBPACK_BUILD_HASH: Date.now().toString(16), }), new AssetsManifestPlugin({ writeToDisk: true, publicPath: true, integrity: true, integrityHashes: ['sha384'] }), new ForkTsCheckerWebpackPlugin({ typescript: { mode: 'write-references', diagnosticOptions: { semantic: true, syntactic: true, }, }, eslint: isProduction ? undefined : { files: `${path.join(__dirname, '/resources/scripts')}/**/*.{ts,tsx}`, } }), process.env.ANALYZE_BUNDLE ? new BundleAnalyzerPlugin({ analyzerHost: '0.0.0.0', analyzerPort: 8081, }) : null ].filter(p => p), optimization: { usedExports: true, sideEffects: false, runtimeChunk: false, removeEmptyChunks: true, minimize: isProduction, minimizer: [ new TerserPlugin({ cache: isProduction, parallel: true, extractComments: false, terserOptions: { mangle: true, output: { comments: false, }, }, }), ], }, watchOptions: { poll: 1000, ignored: /node_modules/, }, devServer: { compress: true, contentBase: path.join(__dirname, '/public'), publicPath: process.env.WEBPACK_PUBLIC_PATH || '/assets/', allowedHosts: [ '.pterodactyl.test', ], headers: { 'Access-Control-Allow-Origin': '*', }, }, }; === Installed node_modules === total 4032 drwxr-xr-x 3 root root 4096 szept 5 19:43 abab drwxr-xr-x 3 root root 4096 szept 5 19:43 accepts drwxr-xr-x 4 root root 4096 szept 5 19:43 acorn drwxr-xr-x 3 root root 4096 szept 5 19:43 acorn-jsx drwxr-xr-x 5 root root 4096 szept 5 19:43 acorn-node drwxr-xr-x 3 root root 4096 szept 5 19:43 acorn-walk drwxr-xr-x 3 root root 4096 szept 5 19:43 @adobe drwxr-xr-x 2 root root 4096 szept 5 19:43 aggregate-error drwxr-xr-x 5 root root 4096 szept 5 19:43 ajv drwxr-xr-x 3 root root 4096 szept 5 19:43 ajv-errors drwxr-xr-x 3 root root 4096 szept 5 19:43 ajv-keywords drwxr-xr-x 3 root root 4096 szept 5 19:43 @alloc drwxr-xr-x 3 root root 4096 szept 5 19:43 ansi-colors drwxr-xr-x 3 root root 4096 szept 5 19:43 ansi-escapes drwxr-xr-x 3 root root 4096 szept 5 19:43 ansi-html-community drwxr-xr-x 2 root root 4096 szept 5 19:43 ansi-regex drwxr-xr-x 3 root root 4096 szept 5 19:43 ansi-styles drwxr-xr-x 2 root root 4096 szept 5 19:43 anymatch drwxr-xr-x 3 root root 4096 szept 5 19:43 any-promise drwxr-xr-x 2 root root 4096 szept 5 19:43 aproba drwxr-xr-x 2 root root 4096 szept 5 19:43 arg drwxr-xr-x 3 root root 4096 szept 5 19:43 argparse drwxr-xr-x 3 root root 4096 szept 5 19:43 aria-hidden drwxr-xr-x 4 root root 4096 szept 5 19:43 aria-query drwxr-xr-x 4 root root 4096 szept 5 19:43 array-buffer-byte-length drwxr-xr-x 3 root root 4096 szept 5 19:43 arraybuffer.prototype.slice drwxr-xr-x 2 root root 4096 szept 5 19:43 array-flatten drwxr-xr-x 4 root root 4096 szept 5 19:43 array-includes drwxr-xr-x 4 root root 4096 szept 5 19:43 array.prototype.findlast drwxr-xr-x 4 root root 4096 szept 5 19:43 array.prototype.flat drwxr-xr-x 4 root root 4096 szept 5 19:43 array.prototype.flatmap drwxr-xr-x 4 root root 4096 szept 5 19:43 array.prototype.tosorted drwxr-xr-x 2 root root 4096 szept 5 19:43 array-union drwxr-xr-x 2 root root 4096 szept 5 19:43 array-uniq drwxr-xr-x 2 root root 4096 szept 5 19:43 array-unique drwxr-xr-x 2 root root 4096 szept 5 19:43 arr-diff drwxr-xr-x 2 root root 4096 szept 5 19:43 arr-flatten drwxr-xr-x 2 root root 4096 szept 5 19:43 arr-union drwxr-xr-x 3 root root 4096 szept 5 19:43 asn1.js drwxr-xr-x 4 root root 4096 szept 5 19:43 assert drwxr-xr-x 2 root root 4096 szept 5 19:43 assign-symbols drwxr-xr-x 4 root root 4096 szept 5 19:43 async drwxr-xr-x 2 root root 4096 szept 5 19:43 async-each drwxr-xr-x 4 root root 4096 szept 5 19:43 async-function drwxr-xr-x 3 root root 4096 szept 5 19:43 asynckit drwxr-xr-x 2 root root 4096 szept 5 19:43 async-limiter drwxr-xr-x 2 root root 4096 szept 5 19:43 at-least-node drwxr-xr-x 3 root root 4096 szept 5 19:43 atob drwxr-xr-x 6 root root 4096 szept 5 19:43 autoprefixer drwxr-xr-x 4 root root 4096 szept 5 19:43 available-typed-arrays drwxr-xr-x 4 root root 4096 szept 5 19:43 axios drwxr-xr-x 121 root root 12288 szept 5 19:43 @babel drwxr-xr-x 3 root root 4096 szept 5 19:43 babel-jest drwxr-xr-x 4 root root 4096 szept 5 19:43 babel-loader drwxr-xr-x 3 root root 4096 szept 5 19:43 babel-plugin-istanbul drwxr-xr-x 3 root root 4096 szept 5 19:43 babel-plugin-jest-hoist drwxr-xr-x 4 root root 4096 szept 5 19:43 babel-plugin-macros drwxr-xr-x 5 root root 4096 szept 5 19:43 babel-plugin-polyfill-corejs2 drwxr-xr-x 5 root root 4096 szept 5 19:43 babel-plugin-polyfill-corejs3 drwxr-xr-x 4 root root 4096 szept 5 19:43 babel-plugin-polyfill-regenerator drwxr-xr-x 3 root root 4096 szept 5 19:43 babel-plugin-styled-components drwxr-xr-x 4 root root 4096 szept 5 19:43 babel-preset-current-node-syntax drwxr-xr-x 2 root root 4096 szept 5 19:43 babel-preset-jest drwxr-xr-x 5 root root 4096 szept 5 19:43 babel-runtime drwxr-xr-x 3 root root 4096 szept 5 19:43 balanced-match drwxr-xr-x 3 root root 4096 szept 5 19:43 base drwxr-xr-x 2 root root 4096 szept 5 19:43 base64-js drwxr-xr-x 2 root root 4096 szept 5 19:43 batch drwxr-xr-x 3 root root 4096 szept 5 19:43 @bcoe drwxr-xr-x 4 root root 4096 szept 5 19:43 bfj drwxr-xr-x 2 root root 4096 szept 5 19:43 big.js drwxr-xr-x 2 root root 4096 szept 5 19:43 binary-extensions drwxr-xr-x 3 root root 4096 szept 5 19:43 bluebird drwxr-xr-x 4 root root 4096 szept 5 19:43 bn.js drwxr-xr-x 4 root root 4096 szept 5 19:43 body-parser drwxr-xr-x 5 root root 4096 szept 5 19:43 bonjour drwxr-xr-x 3 root root 4096 szept 5 19:43 boring-avatars drwxr-xr-x 2 root root 4096 szept 5 19:43 brace-expansion drwxr-xr-x 3 root root 4096 szept 5 19:43 braces drwxr-xr-x 3 root root 4096 szept 5 19:43 brorand drwxr-xr-x 3 root root 4096 szept 5 19:43 browserify-aes drwxr-xr-x 2 root root 4096 szept 5 19:43 browserify-cipher drwxr-xr-x 2 root root 4096 szept 5 19:43 browserify-des drwxr-xr-x 3 root root 4096 szept 5 19:43 browserify-rsa drwxr-xr-x 4 root root 4096 szept 5 19:43 browserify-sign drwxr-xr-x 4 root root 4096 szept 5 19:43 browserify-zlib drwxr-xr-x 3 root root 4096 szept 5 19:43 browserslist drwxr-xr-x 2 root root 4096 szept 5 19:43 bser drwxr-xr-x 3 root root 4096 szept 5 19:43 bs-logger drwxr-xr-x 5 root root 4096 szept 5 19:43 buffer drwxr-xr-x 2 root root 4096 szept 5 19:43 buffer-from drwxr-xr-x 3 root root 4096 szept 5 19:43 buffer-indexof drwxr-xr-x 3 root root 4096 szept 5 19:43 buffer-xor drwxr-xr-x 2 root root 4096 szept 5 19:43 builtin-status-codes drwxr-xr-x 2 root root 4096 szept 5 19:43 bytes drwxr-xr-x 4 root root 4096 szept 5 19:43 cacache drwxr-xr-x 2 root root 4096 szept 5 19:43 cache-base drwxr-xr-x 4 root root 4096 szept 5 19:43 call-bind drwxr-xr-x 4 root root 4096 szept 5 19:43 call-bind-apply-helpers drwxr-xr-x 4 root root 4096 szept 5 19:43 call-bound drwxr-xr-x 2 root root 4096 szept 5 19:43 callsites drwxr-xr-x 2 root root 4096 szept 5 19:43 camelcase drwxr-xr-x 2 root root 4096 szept 5 19:43 camelcase-css drwxr-xr-x 5 root root 4096 szept 5 19:43 camelize drwxr-xr-x 4 root root 4096 szept 5 19:43 caniuse-lite drwxr-xr-x 3 root root 4096 szept 5 19:43 chalk drwxr-xr-x 2 root root 4096 szept 5 19:43 char-regex drwxr-xr-x 6 root root 4096 szept 5 19:43 chart.js drwxr-xr-x 3 root root 4096 szept 5 19:43 check-types drwxr-xr-x 5 root root 4096 szept 5 19:43 chokidar drwxr-xr-x 2 root root 4096 szept 5 19:43 chownr drwxr-xr-x 3 root root 4096 szept 5 19:43 chrome-trace-event drwxr-xr-x 2 root root 4096 szept 5 19:43 ci-info drwxr-xr-x 4 root root 4096 szept 5 19:43 cipher-base drwxr-xr-x 3 root root 4096 szept 5 19:43 cjs-module-lexer drwxr-xr-x 2 root root 4096 szept 5 19:43 classnames drwxr-xr-x 2 root root 4096 szept 5 19:43 class-utils drwxr-xr-x 6 root root 4096 szept 5 19:43 clean-set drwxr-xr-x 2 root root 4096 szept 5 19:43 clean-stack drwxr-xr-x 2 root root 4096 szept 5 19:43 client-only drwxr-xr-x 3 root root 4096 szept 5 19:43 cliui drwxr-xr-x 2 root root 4096 szept 5 19:43 co drwxr-xr-x 9 root root 4096 szept 5 19:43 codemirror drwxr-xr-x 2 root root 4096 szept 5 19:43 collection-visit drwxr-xr-x 2 root root 4096 szept 5 19:43 collect-v8-coverage drwxr-xr-x 2 root root 4096 szept 5 19:43 color drwxr-xr-x 3 root root 4096 szept 5 19:43 color-convert drwxr-xr-x 2 root root 4096 szept 5 19:43 color-name drwxr-xr-x 2 root root 4096 szept 5 19:43 color-string drwxr-xr-x 3 root root 4096 szept 5 19:43 combined-stream drwxr-xr-x 3 root root 4096 szept 5 19:43 commander drwxr-xr-x 4 root root 4096 szept 5 19:43 commondir drwxr-xr-x 2 root root 4096 szept 5 19:43 component-emitter drwxr-xr-x 3 root root 4096 szept 5 19:43 compressible drwxr-xr-x 3 root root 4096 szept 5 19:43 compression drwxr-xr-x 4 root root 4096 szept 5 19:43 concat-map drwxr-xr-x 2 root root 4096 szept 5 19:43 concat-stream drwxr-xr-x 3 root root 4096 szept 5 19:43 connect-history-api-fallback drwxr-xr-x 3 root root 4096 szept 5 19:43 console-browserify drwxr-xr-x 2 root root 4096 szept 5 19:43 constants-browserify drwxr-xr-x 2 root root 4096 szept 5 19:43 content-disposition drwxr-xr-x 2 root root 4096 szept 5 19:43 content-type drwxr-xr-x 2 root root 4096 szept 5 19:43 convert-source-map drwxr-xr-x 2 root root 4096 szept 5 19:43 cookie drwxr-xr-x 2 root root 4096 szept 5 19:43 cookie-signature drwxr-xr-x 3 root root 4096 szept 5 19:43 copy-concurrently drwxr-xr-x 2 root root 4096 szept 5 19:43 copy-descriptor drwxr-xr-x 3 root root 4096 szept 5 19:43 copy-to-clipboard drwxr-xr-x 13 root root 4096 szept 5 19:43 core-js drwxr-xr-x 3 root root 4096 szept 5 19:43 core-js-compat drwxr-xr-x 3 root root 4096 szept 5 19:43 core-util-is drwxr-xr-x 3 root root 4096 szept 5 19:43 cosmiconfig drwxr-xr-x 2 root root 4096 szept 5 19:43 create-ecdh drwxr-xr-x 3 root root 4096 szept 5 19:43 create-hash drwxr-xr-x 3 root root 4096 szept 5 19:43 create-hmac drwxr-xr-x 3 root root 4096 szept 5 19:43 cross-env drwxr-xr-x 4 root root 4096 szept 5 19:43 cross-fetch drwxr-xr-x 4 root root 4096 szept 5 19:43 cross-spawn drwxr-xr-x 5 root root 4096 szept 5 19:43 crypto-browserify drwxr-xr-x 2 root root 4096 szept 5 19:43 cyclist drwxr-xr-x 3 root root 4096 szept 5 19:43 css-blank-pseudo drwxr-xr-x 2 root root 4096 szept 5 19:43 css-color-keywords drwxr-xr-x 2 root root 4096 szept 5 19:43 css-color-names drwxr-xr-x 2 root root 4096 szept 5 19:43 cssdb drwxr-xr-x 4 root root 4096 szept 5 19:43 cssesc drwxr-xr-x 2 root root 4096 szept 5 19:43 css.escape drwxr-xr-x 3 root root 4096 szept 5 19:43 css-has-pseudo drwxr-xr-x 4 root root 4096 szept 5 19:43 css-loader drwxr-xr-x 3 root root 4096 szept 5 19:43 css-prefers-color-scheme drwxr-xr-x 17 root root 4096 szept 5 19:43 @csstools drwxr-xr-x 3 root root 4096 szept 5 19:43 css-to-react-native drwxr-xr-x 2 root root 4096 szept 5 19:43 csstype drwxr-xr-x 2 root root 4096 szept 5 19:43 css-unit-converter drwxr-xr-x 4 root root 4096 szept 5 19:43 data-view-buffer drwxr-xr-x 4 root root 4096 szept 5 19:43 data-view-byte-length drwxr-xr-x 4 root root 4096 szept 5 19:43 data-view-byte-offset drwxr-xr-x 247 root root 12288 szept 5 19:43 date-fns drwxr-xr-x 2 root root 4096 szept 5 19:43 debounce drwxr-xr-x 3 root root 4096 szept 5 19:43 debug drwxr-xr-x 2 root root 4096 szept 5 19:43 decamelize drwxr-xr-x 2 root root 4096 szept 5 19:43 decode-uri-component drwxr-xr-x 3 root root 4096 szept 5 19:43 dedent drwxr-xr-x 5 root root 4096 szept 5 19:43 deep-equal drwxr-xr-x 4 root root 4096 szept 5 19:43 deep-is drwxr-xr-x 3 root root 4096 szept 5 19:43 deepmerge drwxr-xr-x 3 root root 4096 szept 5 19:43 deepmerge-ts drwxr-xr-x 3 root root 4096 szept 5 19:43 default-gateway drwxr-xr-x 5 root root 4096 szept 5 19:43 defined drwxr-xr-x 4 root root 4096 szept 5 19:43 define-data-property drwxr-xr-x 3 root root 4096 szept 5 19:43 define-properties drwxr-xr-x 3 root root 4096 szept 5 19:43 define-property drwxr-xr-x 3 root root 4096 szept 5 19:43 del drwxr-xr-x 3 root root 4096 szept 5 19:43 delayed-stream drwxr-xr-x 3 root root 4096 szept 5 19:43 depd drwxr-xr-x 4 root root 4096 szept 5 19:43 des.js drwxr-xr-x 2 root root 4096 szept 5 19:43 destroy drwxr-xr-x 2 root root 4096 szept 5 19:43 detect-file drwxr-xr-x 6 root root 4096 szept 5 19:43 detective drwxr-xr-x 2 root root 4096 szept 5 19:43 detect-newline drwxr-xr-x 2 root root 4096 szept 5 19:43 detect-node drwxr-xr-x 2 root root 4096 szept 5 19:43 didyoumean drwxr-xr-x 4 root root 4096 szept 5 19:43 diffie-hellman drwxr-xr-x 3 root root 4096 szept 5 19:43 diff-sequences drwxr-xr-x 2 root root 4096 szept 5 19:43 dir-glob drwxr-xr-x 3 root root 4096 szept 5 19:43 dlv drwxr-xr-x 2 root root 4096 szept 5 19:43 dns-equal drwxr-xr-x 2 root root 4096 szept 5 19:43 dns-packet drwxr-xr-x 2 root root 4096 szept 5 19:43 dns-txt drwxr-xr-x 3 root root 4096 szept 5 19:43 doctrine drwxr-xr-x 3 root root 4096 szept 5 19:43 dom-accessibility-api drwxr-xr-x 3 root root 4096 szept 5 19:43 domain-browser drwxr-xr-x 59 root root 4096 szept 5 19:43 dom-helpers drwxr-xr-x 3 root root 4096 szept 5 19:43 dom-walk drwxr-xr-x 3 root root 4096 szept 5 19:43 dset drwxr-xr-x 4 root root 4096 szept 5 19:43 dunder-proto drwxr-xr-x 3 root root 4096 szept 5 19:43 duplexer drwxr-xr-x 2 root root 4096 szept 5 19:43 duplexify drwxr-xr-x 2 root root 4096 szept 5 19:43 eastasianwidth drwxr-xr-x 5 root root 4096 szept 5 19:43 easy-peasy drwxr-xr-x 2 root root 4096 szept 5 19:43 ee-first drwxr-xr-x 3 root root 4096 szept 5 19:43 ejs drwxr-xr-x 2 root root 4096 szept 5 19:43 electron-to-chromium drwxr-xr-x 3 root root 4096 szept 5 19:43 elliptic drwxr-xr-x 2 root root 4096 szept 5 19:43 emittery drwxr-xr-x 3 root root 4096 szept 5 19:43 emoji-regex drwxr-xr-x 2 root root 4096 szept 5 19:43 emojis-list drwxr-xr-x 6 root root 4096 szept 5 19:43 @emotion drwxr-xr-x 2 root root 4096 szept 5 19:43 encodeurl drwxr-xr-x 2 root root 4096 szept 5 19:43 end-of-stream drwxr-xr-x 4 root root 4096 szept 5 19:43 enhanced-resolve drwxr-xr-x 2 root root 4096 szept 5 19:43 errno drwxr-xr-x 2 root root 4096 szept 5 19:43 error-ex drwxr-xr-x 16 root root 4096 szept 5 19:43 es-abstract drwxr-xr-x 4 root root 4096 szept 5 19:43 escalade drwxr-xr-x 2 root root 4096 szept 5 19:43 escape-html drwxr-xr-x 2 root root 4096 szept 5 19:43 escape-string-regexp drwxr-xr-x 4 root root 4096 szept 5 19:43 es-define-property drwxr-xr-x 4 root root 4096 szept 5 19:43 es-errors drwxr-xr-x 4 root root 4096 szept 5 19:43 es-get-iterator drwxr-xr-x 25 root root 4096 szept 5 19:43 es-iterator-helpers drwxr-xr-x 4 root root 4096 szept 5 19:43 @eslint drwxr-xr-x 7 root root 4096 szept 5 19:43 eslint drwxr-xr-x 4 root root 4096 szept 5 19:43 @eslint-community drwxr-xr-x 4 root root 4096 szept 5 19:43 eslint-config-prettier drwxr-xr-x 4 root root 4096 szept 5 19:43 eslint-plugin-es drwxr-xr-x 4 root root 4096 szept 5 19:43 eslint-plugin-jest-dom drwxr-xr-x 4 root root 4096 szept 5 19:43 eslint-plugin-node drwxr-xr-x 3 root root 4096 szept 5 19:43 eslint-plugin-prettier drwxr-xr-x 5 root root 4096 szept 5 19:43 eslint-plugin-react drwxr-xr-x 4 root root 4096 szept 5 19:43 eslint-plugin-react-hooks drwxr-xr-x 4 root root 4096 szept 5 19:43 eslint-scope drwxr-xr-x 3 root root 4096 szept 5 19:43 eslint-utils drwxr-xr-x 4 root root 4096 szept 5 19:43 eslint-visitor-keys drwxr-xr-x 4 root root 4096 szept 5 19:43 es-object-atoms drwxr-xr-x 5 root root 4096 szept 5 19:43 espree drwxr-xr-x 4 root root 4096 szept 5 19:43 esprima drwxr-xr-x 3 root root 4096 szept 5 19:43 esquery drwxr-xr-x 2 root root 4096 szept 5 19:43 esrecurse drwxr-xr-x 3 root root 4096 szept 5 19:43 es-set-tostringtag drwxr-xr-x 4 root root 4096 szept 5 19:43 es-shim-unscopables drwxr-xr-x 5 root root 4096 szept 5 19:43 es-to-primitive drwxr-xr-x 2 root root 4096 szept 5 19:43 estraverse drwxr-xr-x 3 root root 4096 szept 5 19:43 esutils drwxr-xr-x 2 root root 4096 szept 5 19:43 etag drwxr-xr-x 3 root root 4096 szept 5 19:43 eventemitter3 drwxr-xr-x 4 root root 4096 szept 5 19:43 events drwxr-xr-x 4 root root 4096 szept 5 19:43 eventsource drwxr-xr-x 2 root root 4096 szept 5 19:43 evp_bytestokey drwxr-xr-x 3 root root 4096 szept 5 19:43 execa drwxr-xr-x 4 root root 4096 szept 5 19:43 exit drwxr-xr-x 4 root root 4096 szept 5 19:43 expand-brackets drwxr-xr-x 2 root root 4096 szept 5 19:43 expand-tilde drwxr-xr-x 3 root root 4096 szept 5 19:43 expect drwxr-xr-x 4 root root 4096 szept 5 19:43 express drwxr-xr-x 2 root root 4096 szept 5 19:43 extend-shallow drwxr-xr-x 4 root root 4096 szept 5 19:43 extglob drwxr-xr-x 3 root root 4096 szept 5 19:43 fast-deep-equal drwxr-xr-x 2 root root 4096 szept 5 19:43 fast-diff drwxr-xr-x 4 root root 4096 szept 5 19:43 fast-glob drwxr-xr-x 6 root root 4096 szept 5 19:43 fast-json-stable-stringify drwxr-xr-x 2 root root 4096 szept 5 19:43 fast-levenshtein drwxr-xr-x 4 root root 4096 szept 5 19:43 fastq drwxr-xr-x 3 root root 4096 szept 5 19:43 faye-websocket drwxr-xr-x 2 root root 4096 szept 5 19:43 fb-watchman drwxr-xr-x 2 root root 4096 szept 5 19:43 figgy-pudding drwxr-xr-x 2 root root 4096 szept 5 19:43 file-entry-cache drwxr-xr-x 4 root root 4096 szept 5 19:43 file-loader drwxr-xr-x 3 root root 4096 szept 5 19:43 filesize drwxr-xr-x 2 root root 4096 szept 5 19:43 fill-range drwxr-xr-x 3 root root 4096 szept 5 19:43 finalhandler drwxr-xr-x 3 root root 4096 szept 5 19:43 find-cache-dir drwxr-xr-x 2 root root 4096 szept 5 19:43 find-up drwxr-xr-x 3 root root 4096 szept 5 19:43 findup-sync drwxr-xr-x 4 root root 4096 szept 5 19:43 flat-cache drwxr-xr-x 7 root root 4096 szept 5 19:43 flatted drwxr-xr-x 6 root root 4096 szept 5 19:43 @floating-ui drwxr-xr-x 2 root root 4096 szept 5 19:43 flush-write-stream drwxr-xr-x 2 root root 4096 szept 5 19:43 fn-name drwxr-xr-x 2 root root 4096 szept 5 19:43 follow-redirects drwxr-xr-x 4 root root 4096 szept 5 19:43 for-each drwxr-xr-x 4 root root 4096 szept 5 19:43 foreground-child drwxr-xr-x 2 root root 4096 szept 5 19:43 for-in drwxr-xr-x 4 root root 4096 szept 5 19:43 fork-ts-checker-webpack-plugin drwxr-xr-x 3 root root 4096 szept 5 19:43 form-data drwxr-xr-x 4 root root 4096 szept 5 19:43 formik drwxr-xr-x 6 root root 4096 szept 5 19:43 @fortawesome drwxr-xr-x 2 root root 4096 szept 5 19:43 forwarded drwxr-xr-x 2 root root 4096 szept 5 19:43 fraction.js drwxr-xr-x 2 root root 4096 szept 5 19:43 fragment-cache drwxr-xr-x 3 root root 4096 szept 5 19:43 framer-motion drwxr-xr-x 4 root root 4096 szept 5 19:43 framesync drwxr-xr-x 2 root root 4096 szept 5 19:43 fresh drwxr-xr-x 2 root root 4096 szept 5 19:43 from2 drwxr-xr-x 3 root root 4096 szept 5 19:43 fs-extra drwxr-xr-x 2 root root 4096 szept 5 19:43 fs-minipass drwxr-xr-x 4 root root 4096 szept 5 19:43 fs-monkey drwxr-xr-x 2 root root 4096 szept 5 19:43 fs.realpath drwxr-xr-x 3 root root 4096 szept 5 19:43 fs-write-stream-atomic drwxr-xr-x 4 root root 4096 szept 5 19:43 function-bind drwxr-xr-x 5 root root 4096 szept 5 19:43 function.prototype.name drwxr-xr-x 4 root root 4096 szept 5 19:43 functions-have-names drwxr-xr-x 3 root root 4096 szept 5 19:43 @gar drwxr-xr-x 3 root root 4096 szept 5 19:43 gensync drwxr-xr-x 2 root root 4096 szept 5 19:43 get-caller-file drwxr-xr-x 4 root root 4096 szept 5 19:43 get-intrinsic drwxr-xr-x 2 root root 4096 szept 5 19:43 get-package-type drwxr-xr-x 4 root root 4096 szept 5 19:43 get-proto drwxr-xr-x 2 root root 4096 szept 5 19:43 get-stream drwxr-xr-x 4 root root 4096 szept 5 19:43 get-symbol-description drwxr-xr-x 2 root root 4096 szept 5 19:43 get-value drwxr-xr-x 2 root root 4096 szept 5 19:43 glob drwxr-xr-x 2 root root 4096 szept 5 19:43 global drwxr-xr-x 2 root root 4096 szept 5 19:43 global-modules drwxr-xr-x 3 root root 4096 szept 5 19:43 global-prefix drwxr-xr-x 2 root root 4096 szept 5 19:43 globals drwxr-xr-x 3 root root 4096 szept 5 19:43 globalthis drwxr-xr-x 3 root root 4096 szept 5 19:43 globby drwxr-xr-x 2 root root 4096 szept 5 19:43 glob-parent drwxr-xr-x 4 root root 4096 szept 5 19:43 gopd drwxr-xr-x 2 root root 4096 szept 5 19:43 graceful-fs drwxr-xr-x 3 root root 4096 szept 5 19:43 graphemer drwxr-xr-x 2 root root 4096 szept 5 19:43 gzip-size drwxr-xr-x 4 root root 4096 szept 5 19:43 handle-thing drwxr-xr-x 2 root root 4096 szept 5 19:43 harmony-reflect drwxr-xr-x 4 root root 4096 szept 5 19:43 has-bigints drwxr-xr-x 2 root root 4096 szept 5 19:43 has-flag drwxr-xr-x 2 root root 4096 szept 5 19:43 hash-base drwxr-xr-x 4 root root 4096 szept 5 19:43 hash.js drwxr-xr-x 3 root root 4096 szept 5 19:43 hasown drwxr-xr-x 4 root root 4096 szept 5 19:43 has-property-descriptors drwxr-xr-x 4 root root 4096 szept 5 19:43 has-proto drwxr-xr-x 4 root root 4096 szept 5 19:43 has-symbols drwxr-xr-x 4 root root 4096 szept 5 19:43 has-tostringtag drwxr-xr-x 2 root root 4096 szept 5 19:43 has-value drwxr-xr-x 3 root root 4096 szept 5 19:43 has-values drwxr-xr-x 3 root root 4096 szept 5 19:43 @headlessui drwxr-xr-x 3 root root 4096 szept 5 19:43 @heroicons drwxr-xr-x 2 root root 4096 szept 5 19:43 hex-color-regex drwxr-xr-x 4 root root 4096 szept 5 19:43 hey-listen drwxr-xr-x 7 root root 4096 szept 5 19:43 history drwxr-xr-x 4 root root 4096 szept 5 19:43 hmac-drbg drwxr-xr-x 4 root root 4096 szept 5 19:43 hoist-non-react-statics drwxr-xr-x 2 root root 4096 szept 5 19:43 homedir-polyfill drwxr-xr-x 2 root root 4096 szept 5 19:43 hoopy drwxr-xr-x 3 root root 4096 szept 5 19:43 @hot-loader drwxr-xr-x 6 root root 4096 szept 5 19:43 hpack.js drwxr-xr-x 3 root root 4096 szept 5 19:43 hsla-regex drwxr-xr-x 3 root root 4096 szept 5 19:43 hsl-regex drwxr-xr-x 3 root root 4096 szept 5 19:43 html-entities drwxr-xr-x 5 root root 4096 szept 5 19:43 html-escaper drwxr-xr-x 3 root root 4096 szept 5 19:43 html-parse-stringify drwxr-xr-x 2 root root 4096 szept 5 19:43 html-tags drwxr-xr-x 4 root root 4096 szept 5 19:43 http-deceiver drwxr-xr-x 2 root root 4096 szept 5 19:43 http-errors drwxr-xr-x 2 root root 4096 szept 5 19:43 http-parser-js drwxr-xr-x 3 root root 4096 szept 5 19:43 http-proxy drwxr-xr-x 4 root root 4096 szept 5 19:43 http-proxy-middleware drwxr-xr-x 2 root root 4096 szept 5 19:43 https-browserify drwxr-xr-x 3 root root 4096 szept 5 19:43 human-signals drwxr-xr-x 5 root root 4096 szept 5 19:43 @humanwhocodes drwxr-xr-x 3 root root 4096 szept 5 19:43 i18next drwxr-xr-x 5 root root 4096 szept 5 19:43 i18next-http-backend drwxr-xr-x 3 root root 4096 szept 5 19:43 i18next-multiload-backend-adapter drwxr-xr-x 4 root root 4096 szept 5 19:43 iconv-lite drwxr-xr-x 3 root root 4096 szept 5 19:43 icss-utils drwxr-xr-x 3 root root 4096 szept 5 19:43 identity-obj-proxy drwxr-xr-x 2 root root 4096 szept 5 19:43 ieee754 drwxr-xr-x 3 root root 4096 szept 5 19:43 iferr drwxr-xr-x 2 root root 4096 szept 5 19:43 ignore drwxr-xr-x 5 root root 4096 szept 5 19:43 immer drwxr-xr-x 3 root root 4096 szept 5 19:43 import-fresh drwxr-xr-x 3 root root 4096 szept 5 19:43 import-local drwxr-xr-x 2 root root 4096 szept 5 19:43 imurmurhash drwxr-xr-x 2 root root 4096 szept 5 19:43 indent-string drwxr-xr-x 2 root root 4096 szept 5 19:43 infer-owner drwxr-xr-x 2 root root 4096 szept 5 19:43 inflight drwxr-xr-x 2 root root 4096 szept 5 19:43 inherits drwxr-xr-x 2 root root 4096 szept 5 19:43 ini drwxr-xr-x 2 root root 4096 szept 5 19:43 internal-ip drwxr-xr-x 4 root root 4096 szept 5 19:43 internal-slot drwxr-xr-x 2 root root 4096 szept 5 19:43 interpret drwxr-xr-x 3 root root 4096 szept 5 19:43 ip drwxr-xr-x 3 root root 4096 szept 5 19:43 ipaddr.js drwxr-xr-x 2 root root 4096 szept 5 19:43 ip-regex drwxr-xr-x 5 root root 4096 szept 5 19:43 @isaacs drwxr-xr-x 2 root root 4096 szept 5 19:43 is-absolute-url drwxr-xr-x 4 root root 4096 szept 5 19:43 is-accessor-descriptor drwxr-xr-x 4 root root 4096 szept 5 19:43 is-arguments drwxr-xr-x 2 root root 4096 szept 5 19:43 isarray drwxr-xr-x 4 root root 4096 szept 5 19:43 is-array-buffer drwxr-xr-x 2 root root 4096 szept 5 19:43 is-arrayish drwxr-xr-x 3 root root 4096 szept 5 19:43 is-async-function drwxr-xr-x 4 root root 4096 szept 5 19:43 is-bigint drwxr-xr-x 2 root root 4096 szept 5 19:43 is-binary-path drwxr-xr-x 4 root root 4096 szept 5 19:43 is-boolean-object drwxr-xr-x 3 root root 4096 szept 5 19:43 is-buffer drwxr-xr-x 4 root root 4096 szept 5 19:43 is-callable drwxr-xr-x 5 root root 4096 szept 5 19:43 is-color-stop drwxr-xr-x 3 root root 4096 szept 5 19:43 is-core-module drwxr-xr-x 4 root root 4096 szept 5 19:43 is-data-descriptor drwxr-xr-x 4 root root 4096 szept 5 19:43 is-data-view drwxr-xr-x 4 root root 4096 szept 5 19:43 is-date-object drwxr-xr-x 4 root root 4096 szept 5 19:43 is-descriptor drwxr-xr-x 3 root root 4096 szept 5 19:43 isexe drwxr-xr-x 2 root root 4096 szept 5 19:43 is-extendable drwxr-xr-x 2 root root 4096 szept 5 19:43 is-extglob drwxr-xr-x 4 root root 4096 szept 5 19:43 is-finalizationregistry drwxr-xr-x 2 root root 4096 szept 5 19:43 is-fullwidth-code-point drwxr-xr-x 2 root root 4096 szept 5 19:43 is-generator-fn drwxr-xr-x 3 root root 4096 szept 5 19:43 is-generator-function drwxr-xr-x 2 root root 4096 szept 5 19:43 is-glob drwxr-xr-x 4 root root 4096 szept 5 19:43 is-map drwxr-xr-x 4 root root 4096 szept 5 19:43 is-negative-zero drwxr-xr-x 2 root root 4096 szept 5 19:43 is-number drwxr-xr-x 4 root root 4096 szept 5 19:43 is-number-object drwxr-xr-x 2 root root 4096 szept 5 19:43 isobject drwxr-xr-x 2 root root 4096 szept 5 19:43 is-path-cwd drwxr-xr-x 3 root root 4096 szept 5 19:43 is-path-in-cwd drwxr-xr-x 2 root root 4096 szept 5 19:43 is-path-inside drwxr-xr-x 2 root root 4096 szept 5 19:43 is-plain-object drwxr-xr-x 3 root root 4096 szept 5 19:43 is-regex drwxr-xr-x 4 root root 4096 szept 5 19:43 is-set drwxr-xr-x 4 root root 4096 szept 5 19:43 is-shared-array-buffer drwxr-xr-x 2 root root 4096 szept 5 19:43 is-stream drwxr-xr-x 4 root root 4096 szept 5 19:43 is-string drwxr-xr-x 4 root root 4096 szept 5 19:43 is-symbol drwxr-xr-x 4 root root 4096 szept 5 19:43 @istanbuljs drwxr-xr-x 3 root root 4096 szept 5 19:43 istanbul-lib-coverage drwxr-xr-x 4 root root 4096 szept 5 19:43 istanbul-lib-instrument drwxr-xr-x 4 root root 4096 szept 5 19:43 istanbul-lib-report drwxr-xr-x 3 root root 4096 szept 5 19:43 istanbul-lib-source-maps drwxr-xr-x 3 root root 4096 szept 5 19:43 istanbul-reports drwxr-xr-x 4 root root 4096 szept 5 19:43 is-typed-array drwxr-xr-x 4 root root 4096 szept 5 19:43 is-weakmap drwxr-xr-x 4 root root 4096 szept 5 19:43 is-weakref drwxr-xr-x 4 root root 4096 szept 5 19:43 is-weakset drwxr-xr-x 2 root root 4096 szept 5 19:43 is-windows drwxr-xr-x 2 root root 4096 szept 5 19:43 is-wsl drwxr-xr-x 4 root root 4096 szept 5 19:43 iterator.prototype drwxr-xr-x 3 root root 4096 szept 5 19:43 jackspeak drwxr-xr-x 19 root root 4096 szept 5 19:43 @jest drwxr-xr-x 5 root root 4096 szept 5 19:43 jest drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-changed-files drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-circus drwxr-xr-x 5 root root 4096 szept 5 19:43 jest-cli drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-config drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-diff drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-docblock drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-each drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-environment-node drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-get-type drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-haste-map drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-leak-detector drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-matcher-utils drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-message-util drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-mock drwxr-xr-x 2 root root 4096 szept 5 19:43 jest-pnp-resolver drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-regex-util drwxr-xr-x 4 root root 4096 szept 5 19:43 jest-resolve drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-resolve-dependencies drwxr-xr-x 4 root root 4096 szept 5 19:43 jest-runner drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-runtime drwxr-xr-x 4 root root 4096 szept 5 19:43 jest-snapshot drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-util drwxr-xr-x 4 root root 4096 szept 5 19:43 jest-validate drwxr-xr-x 3 root root 4096 szept 5 19:43 jest-watcher drwxr-xr-x 4 root root 4096 szept 5 19:43 jest-worker drwxr-xr-x 5 root root 4096 szept 5 19:43 jiti drwxr-xr-x 8 root root 4096 szept 5 19:43 @jridgewell drwxr-xr-x 4 root root 4096 szept 5 19:43 jsesc drwxr-xr-x 4 root root 4096 szept 5 19:43 json5 drwxr-xr-x 3 root root 4096 szept 5 19:43 json-buffer drwxr-xr-x 2 root root 4096 szept 5 19:43 jsonfile drwxr-xr-x 2 root root 4096 szept 5 19:43 json-parse-better-errors drwxr-xr-x 2 root root 4096 szept 5 19:43 json-parse-even-better-errors drwxr-xr-x 3 root root 4096 szept 5 19:43 json-schema-traverse drwxr-xr-x 4 root root 4096 szept 5 19:43 json-stable-stringify-without-jsonify drwxr-xr-x 2 root root 4096 szept 5 19:43 js-tokens drwxr-xr-x 6 root root 4096 szept 5 19:43 jsx-ast-utils drwxr-xr-x 5 root root 4096 szept 5 19:43 js-yaml drwxr-xr-x 3 root root 4096 szept 5 19:43 keyv drwxr-xr-x 2 root root 4096 szept 5 19:43 killable drwxr-xr-x 2 root root 4096 szept 5 19:43 kind-of drwxr-xr-x 2 root root 4096 szept 5 19:43 kleur drwxr-xr-x 6 root root 4096 szept 5 19:43 klona drwxr-xr-x 2 root root 4096 szept 5 19:43 leven drwxr-xr-x 3 root root 4096 szept 5 19:43 levn drwxr-xr-x 3 root root 4096 szept 5 19:43 lilconfig drwxr-xr-x 3 root root 4096 szept 5 19:43 lines-and-columns drwxr-xr-x 3 root root 4096 szept 5 19:43 loader-runner drwxr-xr-x 4 root root 4096 szept 5 19:43 loader-utils drwxr-xr-x 3 root root 4096 szept 5 19:43 locate-path drwxr-xr-x 3 root root 20480 szept 5 19:43 lodash drwxr-xr-x 2 root root 4096 szept 5 19:43 lodash.debounce drwxr-xr-x 2 root root 20480 szept 5 19:43 lodash-es drwxr-xr-x 2 root root 4096 szept 5 19:43 lodash.flatmap drwxr-xr-x 2 root root 4096 szept 5 19:43 lodash.get drwxr-xr-x 2 root root 4096 szept 5 19:43 lodash.has drwxr-xr-x 2 root root 4096 szept 5 19:43 lodash.memoize drwxr-xr-x 2 root root 4096 szept 5 19:43 lodash.merge drwxr-xr-x 2 root root 4096 szept 5 19:43 lodash.topath drwxr-xr-x 5 root root 4096 szept 5 19:43 loglevel drwxr-xr-x 2 root root 4096 szept 5 19:43 loose-envify drwxr-xr-x 3 root root 4096 szept 5 19:43 lru-cache drwxr-xr-x 7 root root 4096 szept 5 19:43 lz-string drwxr-xr-x 3 root root 4096 szept 5 19:43 make-dir drwxr-xr-x 3 root root 4096 szept 5 19:43 make-error drwxr-xr-x 3 root root 4096 szept 5 19:43 makeerror drwxr-xr-x 2 root root 4096 szept 5 19:43 map-cache drwxr-xr-x 4 root root 4096 szept 5 19:43 map-or-similar drwxr-xr-x 2 root root 4096 szept 5 19:43 map-visit drwxr-xr-x 5 root root 4096 szept 5 19:43 math-intrinsics drwxr-xr-x 3 root root 4096 szept 5 19:43 md5.js drwxr-xr-x 2 root root 4096 szept 5 19:43 media-typer drwxr-xr-x 3 root root 4096 szept 5 19:43 memfs drwxr-xr-x 4 root root 4096 szept 5 19:43 memoizerific drwxr-xr-x 4 root root 4096 szept 5 19:43 memory-fs drwxr-xr-x 2 root root 4096 szept 5 19:43 merge2 drwxr-xr-x 2 root root 4096 szept 5 19:43 merge-descriptors drwxr-xr-x 2 root root 4096 szept 5 19:43 merge-stream drwxr-xr-x 2 root root 4096 szept 5 19:43 methods drwxr-xr-x 3 root root 4096 szept 5 19:43 micromatch drwxr-xr-x 5 root root 4096 szept 5 19:43 miller-rabin drwxr-xr-x 3 root root 4096 szept 5 19:43 mime drwxr-xr-x 2 root root 4096 szept 5 19:43 mime-db drwxr-xr-x 2 root root 4096 szept 5 19:43 mime-types drwxr-xr-x 2 root root 4096 szept 5 19:43 mimic-fn drwxr-xr-x 4 root root 4096 szept 5 19:43 min-document drwxr-xr-x 2 root root 4096 szept 5 19:43 minimalistic-assert drwxr-xr-x 4 root root 4096 szept 5 19:43 minimalistic-crypto-utils drwxr-xr-x 2 root root 4096 szept 5 19:43 minimatch drwxr-xr-x 5 root root 4096 szept 5 19:43 minimist drwxr-xr-x 2 root root 4096 szept 5 19:43 min-indent drwxr-xr-x 2 root root 4096 szept 5 19:43 minipass drwxr-xr-x 2 root root 4096 szept 5 19:43 minipass-collect drwxr-xr-x 2 root root 4096 szept 5 19:43 minipass-flush drwxr-xr-x 2 root root 4096 szept 5 19:43 minipass-pipeline drwxr-xr-x 2 root root 4096 szept 5 19:43 mini-svg-data-uri drwxr-xr-x 2 root root 4096 szept 5 19:43 minizlib drwxr-xr-x 2 root root 4096 szept 5 19:43 mississippi drwxr-xr-x 3 root root 4096 szept 5 19:43 mixin-deep drwxr-xr-x 3 root root 4096 szept 5 19:43 mkdirp drwxr-xr-x 2 root root 4096 szept 5 19:43 modern-normalize drwxr-xr-x 8 root root 4096 szept 5 19:43 @motionone drwxr-xr-x 3 root root 4096 szept 5 19:43 move-concurrently drwxr-xr-x 2 root root 4096 szept 5 19:43 ms drwxr-xr-x 2 root root 4096 szept 5 19:43 multicast-dns drwxr-xr-x 2 root root 4096 szept 5 19:43 multicast-dns-service-types drwxr-xr-x 2 root root 4096 szept 5 19:43 mz drwxr-xr-x 6 root root 4096 szept 5 19:43 nanoid drwxr-xr-x 4 root root 4096 szept 5 19:43 nanomatch drwxr-xr-x 2 root root 4096 szept 5 19:43 natural-compare drwxr-xr-x 2 root root 4096 szept 5 19:43 natural-compare-lite drwxr-xr-x 3 root root 4096 szept 5 19:43 negotiator drwxr-xr-x 2 root root 4096 szept 5 19:43 neo-async drwxr-xr-x 3 root root 4096 szept 5 19:43 nice-try drwxr-xr-x 5 root root 4096 szept 5 19:43 node-emoji drwxr-xr-x 3 root root 4096 szept 5 19:43 node-fetch drwxr-xr-x 5 root root 4096 szept 5 19:43 node-forge drwxr-xr-x 2 root root 4096 szept 5 19:43 node-int64 drwxr-xr-x 5 root root 4096 szept 5 19:43 @nodelib drwxr-xr-x 3 root root 4096 szept 5 19:43 node-libs-browser drwxr-xr-x 3 root root 4096 szept 5 19:43 node-releases drwxr-xr-x 2 root root 4096 szept 5 19:43 normalize-path drwxr-xr-x 2 root root 4096 szept 5 19:43 normalize-range drwxr-xr-x 4 root root 4096 szept 5 19:43 @npmcli drwxr-xr-x 3 root root 4096 szept 5 19:43 npm-run-path drwxr-xr-x 2 root root 4096 szept 5 19:43 object-assign drwxr-xr-x 5 root root 4096 szept 5 19:43 object.assign drwxr-xr-x 2 root root 4096 szept 5 19:43 object-copy drwxr-xr-x 3 root root 4096 szept 5 19:43 object.entries drwxr-xr-x 3 root root 4096 szept 5 19:43 object.fromentries drwxr-xr-x 3 root root 4096 szept 5 19:43 object-hash drwxr-xr-x 5 root root 4096 szept 5 19:43 object-inspect drwxr-xr-x 3 root root 4096 szept 5 19:43 object-is drwxr-xr-x 3 root root 4096 szept 5 19:43 object-keys drwxr-xr-x 2 root root 4096 szept 5 19:43 object.pick drwxr-xr-x 3 root root 4096 szept 5 19:43 object.values drwxr-xr-x 2 root root 4096 szept 5 19:43 object-visit drwxr-xr-x 3 root root 4096 szept 5 19:43 obuf drwxr-xr-x 2 root root 4096 szept 5 19:43 once drwxr-xr-x 2 root root 4096 szept 5 19:43 onetime drwxr-xr-x 2 root root 4096 szept 5 19:43 on-finished drwxr-xr-x 2 root root 4096 szept 5 19:43 on-headers drwxr-xr-x 4 root root 4096 szept 5 19:43 opener drwxr-xr-x 2 root root 4096 szept 5 19:43 opn drwxr-xr-x 3 root root 4096 szept 5 19:43 optionator drwxr-xr-x 2 root root 4096 szept 5 19:43 os-browserify drwxr-xr-x 4 root root 4096 szept 5 19:43 own-keys drwxr-xr-x 3 root root 4096 szept 5 19:43 package-json-from-dist drwxr-xr-x 4 root root 4096 szept 5 19:43 pako drwxr-xr-x 2 root root 4096 szept 5 19:43 parallel-transform drwxr-xr-x 2 root root 4096 szept 5 19:43 parent-module drwxr-xr-x 3 root root 4096 szept 5 19:43 parse-asn1 drwxr-xr-x 2 root root 4096 szept 5 19:43 parse-json drwxr-xr-x 2 root root 4096 szept 5 19:43 parse-passwd drwxr-xr-x 2 root root 4096 szept 5 19:43 parseurl drwxr-xr-x 2 root root 4096 szept 5 19:43 pascalcase drwxr-xr-x 3 root root 4096 szept 5 19:43 path-browserify drwxr-xr-x 2 root root 4096 szept 5 19:43 path-dirname drwxr-xr-x 2 root root 4096 szept 5 19:43 path-exists drwxr-xr-x 2 root root 4096 szept 5 19:43 path-is-absolute drwxr-xr-x 3 root root 4096 szept 5 19:43 path-is-inside drwxr-xr-x 2 root root 4096 szept 5 19:43 path-key drwxr-xr-x 2 root root 4096 szept 5 19:43 path-parse drwxr-xr-x 4 root root 4096 szept 5 19:43 path-scurry drwxr-xr-x 2 root root 4096 szept 5 19:43 path-to-regexp drwxr-xr-x 2 root root 4096 szept 5 19:43 path-type drwxr-xr-x 5 root root 4096 szept 5 19:43 pbkdf2 drwxr-xr-x 2 root root 4096 szept 5 19:43 p-finally drwxr-xr-x 2 root root 4096 szept 5 19:43 picocolors drwxr-xr-x 3 root root 4096 szept 5 19:43 picomatch drwxr-xr-x 2 root root 4096 szept 5 19:43 pify drwxr-xr-x 2 root root 4096 szept 5 19:43 pinkie drwxr-xr-x 2 root root 4096 szept 5 19:43 pinkie-promise drwxr-xr-x 3 root root 4096 szept 5 19:43 pirates drwxr-xr-x 2 root root 4096 szept 5 19:43 pkg-dir drwxr-xr-x 3 root root 4096 szept 5 19:43 @pkgjs drwxr-xr-x 2 root root 4096 szept 5 19:43 p-limit drwxr-xr-x 3 root root 4096 szept 5 19:43 p-locate drwxr-xr-x 2 root root 4096 szept 5 19:43 p-map drwxr-xr-x 4 root root 4096 szept 5 19:43 popmotion drwxr-xr-x 3 root root 4096 szept 5 19:43 portfinder drwxr-xr-x 2 root root 4096 szept 5 19:43 posix-character-classes drwxr-xr-x 4 root root 4096 szept 5 19:43 possible-typed-array-names drwxr-xr-x 4 root root 4096 szept 5 19:43 postcss drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-attribute-case-insensitive drwxr-xr-x 2 root root 4096 szept 5 19:43 postcss-clamp drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-color-functional-notation drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-color-hex-alpha drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-color-rebeccapurple drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-custom-media drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-custom-properties drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-custom-selectors drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-dir-pseudo-class drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-double-position-gradients drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-env-function drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-focus-visible drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-focus-within drwxr-xr-x 2 root root 4096 szept 5 19:43 postcss-font-variant drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-gap-properties drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-image-set-function drwxr-xr-x 4 root root 4096 szept 5 19:43 postcss-import drwxr-xr-x 6 root root 4096 szept 5 19:43 postcss-initial drwxr-xr-x 2 root root 4096 szept 5 19:43 postcss-js drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-lab-function drwxr-xr-x 4 root root 4096 szept 5 19:43 postcss-load-config drwxr-xr-x 4 root root 4096 szept 5 19:43 postcss-loader drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-logical drwxr-xr-x 2 root root 4096 szept 5 19:43 postcss-media-minmax drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-modules-extract-imports drwxr-xr-x 4 root root 4096 szept 5 19:43 postcss-modules-local-by-default drwxr-xr-x 4 root root 4096 szept 5 19:43 postcss-modules-scope drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-modules-values drwxr-xr-x 2 root root 4096 szept 5 19:43 postcss-nested drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-nesting drwxr-xr-x 2 root root 4096 szept 5 19:43 postcss-opacity-percentage drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-overflow-shorthand drwxr-xr-x 2 root root 4096 szept 5 19:43 postcss-page-break drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-place drwxr-xr-x 4 root root 4096 szept 5 19:43 postcss-preset-env drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-pseudo-class-any-link drwxr-xr-x 2 root root 4096 szept 5 19:43 postcss-replace-overflow-wrap drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-selector-not drwxr-xr-x 4 root root 4096 szept 5 19:43 postcss-selector-parser drwxr-xr-x 3 root root 4096 szept 5 19:43 postcss-value-parser drwxr-xr-x 4 root root 4096 szept 5 19:43 @preact drwxr-xr-x 3 root root 4096 szept 5 19:43 prelude-ls drwxr-xr-x 2 root root 4096 szept 5 19:43 p-retry drwxr-xr-x 3 root root 4096 szept 5 19:43 prettier drwxr-xr-x 5 root root 4096 szept 5 19:43 prettier-linter-helpers drwxr-xr-x 4 root root 4096 szept 5 19:43 pretty-format drwxr-xr-x 2 root root 4096 szept 5 19:43 pretty-hrtime drwxr-xr-x 2 root root 4096 szept 5 19:43 process drwxr-xr-x 2 root root 4096 szept 5 19:43 process-nextick-args drwxr-xr-x 2 root root 4096 szept 5 19:43 promise-inflight drwxr-xr-x 4 root root 4096 szept 5 19:43 prompts drwxr-xr-x 2 root root 4096 szept 5 19:43 property-expr drwxr-xr-x 4 root root 4096 szept 5 19:43 prop-types drwxr-xr-x 2 root root 4096 szept 5 19:43 proxy-addr drwxr-xr-x 2 root root 4096 szept 5 19:43 prr drwxr-xr-x 2 root root 4096 szept 5 19:43 p-try drwxr-xr-x 3 root root 4096 szept 5 19:43 public-encrypt drwxr-xr-x 3 root root 4096 szept 5 19:43 pump drwxr-xr-x 3 root root 4096 szept 5 19:43 pumpify drwxr-xr-x 2 root root 4096 szept 5 19:43 punycode drwxr-xr-x 5 root root 4096 szept 5 19:43 purgecss drwxr-xr-x 4 root root 4096 szept 5 19:43 qrcode.react drwxr-xr-x 4 root root 4096 szept 5 19:43 qr.js drwxr-xr-x 6 root root 4096 szept 5 19:43 qs drwxr-xr-x 3 root root 4096 szept 5 19:43 querystring-es3 drwxr-xr-x 2 root root 4096 szept 5 19:43 querystringify drwxr-xr-x 2 root root 4096 szept 5 19:43 queue-microtask drwxr-xr-x 2 root root 4096 szept 5 19:43 quick-lru drwxr-xr-x 2 root root 4096 szept 5 19:43 randombytes drwxr-xr-x 2 root root 4096 szept 5 19:43 randomfill drwxr-xr-x 2 root root 4096 szept 5 19:43 range-parser drwxr-xr-x 2 root root 4096 szept 5 19:43 raw-body drwxr-xr-x 5 root root 4096 szept 5 19:43 react drwxr-xr-x 3 root root 4096 szept 5 19:43 react-chartjs-2 drwxr-xr-x 5 root root 4096 szept 5 19:43 react-dom drwxr-xr-x 2 root root 4096 szept 5 19:43 react-fast-compare drwxr-xr-x 4 root root 4096 szept 5 19:43 react-hot-loader drwxr-xr-x 5 root root 4096 szept 5 19:43 react-i18next drwxr-xr-x 4 root root 4096 szept 5 19:43 react-is drwxr-xr-x 2 root root 4096 szept 5 19:43 react-lifecycles-compat drwxr-xr-x 8 root root 4096 szept 5 19:43 react-router drwxr-xr-x 8 root root 4096 szept 5 19:43 react-router-dom drwxr-xr-x 13 root root 4096 szept 5 19:43 react-transition-group drwxr-xr-x 5 root root 4096 szept 5 19:43 readable-stream drwxr-xr-x 3 root root 4096 szept 5 19:43 read-cache drwxr-xr-x 2 root root 4096 szept 5 19:43 readdirp drwxr-xr-x 3 root root 4096 szept 5 19:43 reaptcha drwxr-xr-x 2 root root 4096 szept 5 19:43 redent drwxr-xr-x 4 root root 4096 szept 5 19:43 reduce-css-calc drwxr-xr-x 6 root root 4096 szept 5 19:43 redux drwxr-xr-x 3 root root 4096 szept 5 19:43 redux-devtools-extension drwxr-xr-x 6 root root 4096 szept 5 19:43 redux-thunk drwxr-xr-x 3 root root 4096 szept 5 19:43 reflect.getprototypeof drwxr-xr-x 2 root root 4096 szept 5 19:43 regenerate drwxr-xr-x 7 root root 4096 szept 5 19:43 regenerate-unicode-properties drwxr-xr-x 2 root root 4096 szept 5 19:43 regenerator-runtime drwxr-xr-x 3 root root 4096 szept 5 19:43 regex-not drwxr-xr-x 2 root root 4096 szept 5 19:43 regexpp drwxr-xr-x 3 root root 4096 szept 5 19:43 regexp.prototype.flags drwxr-xr-x 4 root root 4096 szept 5 19:43 regexpu-core drwxr-xr-x 2 root root 4096 szept 5 19:43 regjsgen drwxr-xr-x 4 root root 4096 szept 5 19:43 regjsparser drwxr-xr-x 2 root root 4096 szept 5 19:43 remove-trailing-separator drwxr-xr-x 2 root root 4096 szept 5 19:43 repeat-element drwxr-xr-x 2 root root 4096 szept 5 19:43 repeat-string drwxr-xr-x 2 root root 4096 szept 5 19:43 require-directory drwxr-xr-x 3 root root 4096 szept 5 19:43 requireindex drwxr-xr-x 2 root root 4096 szept 5 19:43 require-main-filename drwxr-xr-x 2 root root 4096 szept 5 19:43 requires-port drwxr-xr-x 4 root root 4096 szept 5 19:43 resize-observer-polyfill drwxr-xr-x 7 root root 4096 szept 5 19:43 resolve drwxr-xr-x 3 root root 4096 szept 5 19:43 resolve-cwd drwxr-xr-x 3 root root 4096 szept 5 19:43 resolve-dir drwxr-xr-x 3 root root 4096 szept 5 19:43 resolve.exports drwxr-xr-x 2 root root 4096 szept 5 19:43 resolve-from drwxr-xr-x 5 root root 4096 szept 5 19:43 resolve-pathname drwxr-xr-x 3 root root 4096 szept 5 19:43 resolve-url drwxr-xr-x 3 root root 4096 szept 5 19:43 ret drwxr-xr-x 5 root root 4096 szept 5 19:43 retry drwxr-xr-x 4 root root 4096 szept 5 19:43 reusify drwxr-xr-x 3 root root 4096 szept 5 19:43 rgba-regex drwxr-xr-x 3 root root 4096 szept 5 19:43 rgb-regex drwxr-xr-x 2 root root 4096 szept 5 19:43 rimraf drwxr-xr-x 3 root root 4096 szept 5 19:43 ripemd160 drwxr-xr-x 2 root root 4096 szept 5 19:43 run-parallel drwxr-xr-x 2 root root 4096 szept 5 19:43 run-queue drwxr-xr-x 12 root root 4096 szept 5 19:43 rxjs-compat drwxr-xr-x 4 root root 4096 szept 5 19:43 safe-array-concat drwxr-xr-x 2 root root 4096 szept 5 19:43 safe-buffer drwxr-xr-x 4 root root 4096 szept 5 19:43 safe-push-apply drwxr-xr-x 2 root root 4096 szept 5 19:43 safer-buffer drwxr-xr-x 4 root root 4096 szept 5 19:43 safe-regex drwxr-xr-x 4 root root 4096 szept 5 19:43 safe-regex-test drwxr-xr-x 5 root root 4096 szept 5 19:43 scheduler drwxr-xr-x 4 root root 4096 szept 5 19:43 schema-utils drwxr-xr-x 4 root root 4096 szept 5 19:43 select-hose drwxr-xr-x 3 root root 4096 szept 5 19:43 selfsigned drwxr-xr-x 3 root root 4096 szept 5 19:43 semver drwxr-xr-x 3 root root 4096 szept 5 19:43 send drwxr-xr-x 2 root root 4096 szept 5 19:43 serialize-javascript drwxr-xr-x 4 root root 4096 szept 5 19:43 serve-index drwxr-xr-x 2 root root 4096 szept 5 19:43 serve-static drwxr-xr-x 2 root root 4096 szept 5 19:43 set-blocking drwxr-xr-x 3 root root 4096 szept 5 19:43 set-function-length drwxr-xr-x 3 root root 4096 szept 5 19:43 set-function-name drwxr-xr-x 2 root root 4096 szept 5 19:43 setimmediate drwxr-xr-x 4 root root 4096 szept 5 19:43 set-proto drwxr-xr-x 3 root root 4096 szept 5 19:43 setprototypeof drwxr-xr-x 2 root root 4096 szept 5 19:43 set-value drwxr-xr-x 3 root root 4096 szept 5 19:43 sha.js drwxr-xr-x 2 root root 4096 szept 5 19:43 shallowequal drwxr-xr-x 2 root root 4096 szept 5 19:43 shebang-command drwxr-xr-x 2 root root 4096 szept 5 19:43 shebang-regex drwxr-xr-x 4 root root 4096 szept 5 19:43 side-channel drwxr-xr-x 4 root root 4096 szept 5 19:43 side-channel-list drwxr-xr-x 4 root root 4096 szept 5 19:43 side-channel-map drwxr-xr-x 4 root root 4096 szept 5 19:43 side-channel-weakmap drwxr-xr-x 2 root root 4096 szept 5 19:43 signal-exit drwxr-xr-x 3 root root 4096 szept 5 19:43 simple-swizzle drwxr-xr-x 3 root root 4096 szept 5 19:43 @sinclair drwxr-xr-x 4 root root 4096 szept 5 19:43 @sinonjs drwxr-xr-x 3 root root 4096 szept 5 19:43 sisteransi drwxr-xr-x 2 root root 4096 szept 5 19:43 slash drwxr-xr-x 4 root root 4096 szept 5 19:43 snapdragon drwxr-xr-x 3 root root 4096 szept 5 19:43 snapdragon-node drwxr-xr-x 2 root root 4096 szept 5 19:43 snapdragon-util drwxr-xr-x 3 root root 4096 szept 5 19:43 sockette drwxr-xr-x 4 root root 4096 szept 5 19:43 sockjs drwxr-xr-x 5 root root 4096 szept 5 19:43 sockjs-client drwxr-xr-x 3 root root 4096 szept 5 19:43 source-list-map drwxr-xr-x 4 root root 4096 szept 5 19:43 source-map drwxr-xr-x 3 root root 4096 szept 5 19:43 source-map-js drwxr-xr-x 4 root root 4096 szept 5 19:43 source-map-loader drwxr-xr-x 4 root root 4096 szept 5 19:43 source-map-resolve drwxr-xr-x 2 root root 4096 szept 5 19:43 source-map-support drwxr-xr-x 2 root root 4096 szept 5 19:43 source-map-url drwxr-xr-x 4 root root 4096 szept 5 19:43 spdy drwxr-xr-x 4 root root 4096 szept 5 19:43 spdy-transport drwxr-xr-x 3 root root 4096 szept 5 19:43 split-string drwxr-xr-x 6 root root 4096 szept 5 19:43 sprintf-js drwxr-xr-x 2 root root 4096 szept 5 19:43 ssri drwxr-xr-x 3 root root 4096 szept 5 19:43 stack-utils drwxr-xr-x 2 root root 4096 szept 5 19:43 static-extend drwxr-xr-x 2 root root 4096 szept 5 19:43 statuses drwxr-xr-x 4 root root 4096 szept 5 19:43 stop-iteration-iterator drwxr-xr-x 3 root root 4096 szept 5 19:43 stream-browserify drwxr-xr-x 2 root root 4096 szept 5 19:43 stream-each drwxr-xr-x 4 root root 4096 szept 5 19:43 stream-http drwxr-xr-x 3 root root 4096 szept 5 19:43 stream-shift drwxr-xr-x 3 root root 4096 szept 5 19:43 string_decoder drwxr-xr-x 2 root root 4096 szept 5 19:43 string-length drwxr-xr-x 4 root root 4096 szept 5 19:43 string.prototype.matchall drwxr-xr-x 3 root root 4096 szept 5 19:43 string.prototype.repeat drwxr-xr-x 3 root root 4096 szept 5 19:43 string.prototype.trim drwxr-xr-x 3 root root 4096 szept 5 19:43 string.prototype.trimend drwxr-xr-x 3 root root 4096 szept 5 19:43 string.prototype.trimstart drwxr-xr-x 4 root root 4096 szept 5 19:43 string-similarity drwxr-xr-x 2 root root 4096 szept 5 19:43 string-width drwxr-xr-x 2 root root 4096 szept 5 19:43 string-width-cjs drwxr-xr-x 2 root root 4096 szept 5 19:43 strip-ansi drwxr-xr-x 2 root root 4096 szept 5 19:43 strip-ansi-cjs drwxr-xr-x 2 root root 4096 szept 5 19:43 strip-bom drwxr-xr-x 2 root root 4096 szept 5 19:43 strip-eof drwxr-xr-x 2 root root 4096 szept 5 19:43 strip-final-newline drwxr-xr-x 2 root root 4096 szept 5 19:43 strip-indent drwxr-xr-x 2 root root 4096 szept 5 19:43 strip-json-comments drwxr-xr-x 9 root root 4096 szept 5 19:43 styled-components drwxr-xr-x 3 root root 4096 szept 5 19:43 styled-components-breakpoint drwxr-xr-x 4 root root 4096 szept 5 19:43 style-loader drwxr-xr-x 4 root root 4096 szept 5 19:43 style-value-types drwxr-xr-x 7 root root 4096 szept 5 19:43 sucrase drwxr-xr-x 2 root root 4096 szept 5 19:43 supports-color drwxr-xr-x 2 root root 4096 szept 5 19:43 supports-hyperlinks drwxr-xr-x 4 root root 4096 szept 5 19:43 supports-preserve-symlinks-flag drwxr-xr-x 4 root root 4096 szept 5 19:43 svg-url-loader drwxr-xr-x 5 root root 4096 szept 5 19:43 swr drwxr-xr-x 4 root root 4096 szept 5 19:43 symbol-observable drwxr-xr-x 2 root root 4096 szept 5 19:43 synchronous-promise drwxr-xr-x 4 root root 4096 szept 5 19:43 @tailwindcss drwxr-xr-x 10 root root 4096 szept 5 19:43 tailwindcss drwxr-xr-x 4 root root 4096 szept 5 19:43 @tanstack drwxr-xr-x 3 root root 4096 szept 5 19:43 tapable drwxr-xr-x 4 root root 4096 szept 5 19:43 tar drwxr-xr-x 2 root root 4096 szept 5 19:43 terminal-link drwxr-xr-x 7 root root 4096 szept 5 19:43 terser drwxr-xr-x 4 root root 4096 szept 5 19:43 terser-webpack-plugin drwxr-xr-x 2 root root 4096 szept 5 19:43 test-exclude drwxr-xr-x 6 root root 4096 szept 5 19:43 @testing-library drwxr-xr-x 4 root root 4096 szept 5 19:43 text-table drwxr-xr-x 2 root root 4096 szept 5 19:43 thenify drwxr-xr-x 2 root root 4096 szept 5 19:43 thenify-all drwxr-xr-x 2 root root 4096 szept 5 19:43 through2 drwxr-xr-x 2 root root 4096 szept 5 19:43 thunky drwxr-xr-x 2 root root 4096 szept 5 19:43 timers-browserify drwxr-xr-x 4 root root 4096 szept 5 19:43 timsort drwxr-xr-x 4 root root 4096 szept 5 19:43 tiny-invariant drwxr-xr-x 4 root root 4096 szept 5 19:43 tiny-warning drwxr-xr-x 3 root root 4096 szept 5 19:43 tmp drwxr-xr-x 3 root root 4096 szept 5 19:43 tmpl drwxr-xr-x 2 root root 4096 szept 5 19:43 to-arraybuffer drwxr-xr-x 3 root root 4096 szept 5 19:43 to-buffer drwxr-xr-x 3 root root 4096 szept 5 19:43 toggle-selection drwxr-xr-x 2 root root 4096 szept 5 19:43 toidentifier drwxr-xr-x 2 root root 4096 szept 5 19:43 to-object-path drwxr-xr-x 2 root root 4096 szept 5 19:43 toposort drwxr-xr-x 3 root root 4096 szept 5 19:43 to-regex drwxr-xr-x 2 root root 4096 szept 5 19:43 to-regex-range drwxr-xr-x 3 root root 4096 szept 5 19:43 tr46 drwxr-xr-x 5 root root 4096 szept 5 19:43 tryer drwxr-xr-x 4 root root 4096 szept 5 19:43 ts-essentials drwxr-xr-x 3 root root 4096 szept 5 19:43 ts-interface-checker drwxr-xr-x 5 root root 4096 szept 5 19:43 ts-jest drwxr-xr-x 3 root root 4096 szept 5 19:43 tslib drwxr-xr-x 3 root root 4096 szept 5 19:43 ts-toolbelt drwxr-xr-x 5 root root 4096 szept 5 19:43 tsutils drwxr-xr-x 4 root root 4096 szept 5 19:43 twin.macro drwxr-xr-x 3 root root 4096 szept 5 19:43 type-check drwxr-xr-x 4 root root 4096 szept 5 19:43 typedarray drwxr-xr-x 4 root root 4096 szept 5 19:43 typed-array-buffer drwxr-xr-x 4 root root 4096 szept 5 19:43 typed-array-byte-length drwxr-xr-x 4 root root 4096 szept 5 19:43 typed-array-byte-offset drwxr-xr-x 4 root root 4096 szept 5 19:43 typed-array-length drwxr-xr-x 2 root root 4096 szept 5 19:43 type-detect drwxr-xr-x 4 root root 4096 szept 5 19:43 type-fest drwxr-xr-x 2 root root 4096 szept 5 19:43 type-is drwxr-xr-x 44 root root 4096 szept 5 19:43 @types drwxr-xr-x 4 root root 4096 szept 5 19:43 typescript drwxr-xr-x 10 root root 4096 szept 5 19:43 @typescript-eslint drwxr-xr-x 2 root root 4096 szept 5 19:43 tty-browserify drwxr-xr-x 4 root root 4096 szept 5 19:43 unbox-primitive drwxr-xr-x 2 root root 4096 szept 5 19:43 undici-types drwxr-xr-x 3 root root 4096 szept 5 19:43 @ungap drwxr-xr-x 2 root root 4096 szept 5 19:43 unicode-canonical-property-names-ecmascript drwxr-xr-x 2 root root 4096 szept 5 19:43 unicode-match-property-ecmascript drwxr-xr-x 3 root root 4096 szept 5 19:43 unicode-match-property-value-ecmascript drwxr-xr-x 2 root root 4096 szept 5 19:43 unicode-property-aliases-ecmascript drwxr-xr-x 2 root root 4096 szept 5 19:43 union-value drwxr-xr-x 5 root root 4096 szept 5 19:43 unique-filename drwxr-xr-x 3 root root 4096 szept 5 19:43 unique-slug drwxr-xr-x 2 root root 4096 szept 5 19:43 universalify drwxr-xr-x 2 root root 4096 szept 5 19:43 unpipe drwxr-xr-x 3 root root 4096 szept 5 19:43 unset-value drwxr-xr-x 3 root root 4096 szept 5 19:43 upath drwxr-xr-x 3 root root 4096 szept 5 19:43 update-browserslist-db drwxr-xr-x 4 root root 4096 szept 5 19:43 uri-js drwxr-xr-x 3 root root 4096 szept 5 19:43 urix drwxr-xr-x 4 root root 4096 szept 5 19:43 url drwxr-xr-x 3 root root 4096 szept 5 19:43 url-parse drwxr-xr-x 2 root root 4096 szept 5 19:43 use drwxr-xr-x 4 root root 4096 szept 5 19:43 use-fit-text drwxr-xr-x 3 root root 4096 szept 5 19:43 use-isomorphic-layout-effect drwxr-xr-x 4 root root 4096 szept 5 19:43 use-memo-one drwxr-xr-x 4 root root 4096 szept 5 19:43 use-sync-external-store drwxr-xr-x 4 root root 4096 szept 5 19:43 util drwxr-xr-x 2 root root 4096 szept 5 19:43 util-deprecate drwxr-xr-x 2 root root 4096 szept 5 19:43 utils-merge drwxr-xr-x 3 root root 4096 szept 5 19:43 uuid drwxr-xr-x 2 root root 4096 szept 5 19:43 v8-compile-cache drwxr-xr-x 3 root root 4096 szept 5 19:43 v8-to-istanbul drwxr-xr-x 5 root root 4096 szept 5 19:43 value-equal drwxr-xr-x 2 root root 4096 szept 5 19:43 vary drwxr-xr-x 5 root root 4096 szept 5 19:43 vm-browserify drwxr-xr-x 2 root root 4096 szept 5 19:43 void-elements drwxr-xr-x 3 root root 4096 szept 5 19:43 walker drwxr-xr-x 3 root root 4096 szept 5 19:43 watchpack drwxr-xr-x 3 root root 4096 szept 5 19:43 watchpack-chokidar2 drwxr-xr-x 3 root root 4096 szept 5 19:43 wbuf drwxr-xr-x 20 root root 4096 szept 5 19:43 @webassemblyjs drwxr-xr-x 3 root root 4096 szept 5 19:43 webidl-conversions drwxr-xr-x 10 root root 4096 szept 5 19:43 webpack drwxr-xr-x 4 root root 4096 szept 5 19:43 webpack-assets-manifest drwxr-xr-x 7 root root 4096 szept 5 19:43 webpack-bundle-analyzer drwxr-xr-x 4 root root 4096 szept 5 19:43 webpack-cli drwxr-xr-x 4 root root 4096 szept 5 19:43 webpack-dev-middleware drwxr-xr-x 7 root root 4096 szept 5 19:43 webpack-dev-server drwxr-xr-x 4 root root 4096 szept 5 19:43 webpack-log drwxr-xr-x 3 root root 4096 szept 5 19:43 webpack-sources drwxr-xr-x 3 root root 4096 szept 5 19:43 websocket-driver drwxr-xr-x 3 root root 4096 szept 5 19:43 websocket-extensions drwxr-xr-x 3 root root 4096 szept 5 19:43 whatwg-mimetype drwxr-xr-x 3 root root 4096 szept 5 19:43 whatwg-url drwxr-xr-x 3 root root 4096 szept 5 19:43 which drwxr-xr-x 4 root root 4096 szept 5 19:43 which-boxed-primitive drwxr-xr-x 3 root root 4096 szept 5 19:43 which-builtin-type drwxr-xr-x 4 root root 4096 szept 5 19:43 which-collection drwxr-xr-x 2 root root 4096 szept 5 19:43 which-module drwxr-xr-x 4 root root 4096 szept 5 19:43 which-typed-array drwxr-xr-x 2 root root 4096 szept 5 19:43 word-wrap drwxr-xr-x 6 root root 4096 szept 5 19:43 worker-farm drwxr-xr-x 3 root root 4096 szept 5 19:43 wrap-ansi drwxr-xr-x 2 root root 4096 szept 5 19:43 wrap-ansi-cjs drwxr-xr-x 2 root root 4096 szept 5 19:43 wrappy drwxr-xr-x 3 root root 4096 szept 5 19:43 write-file-atomic drwxr-xr-x 3 root root 4096 szept 5 19:43 ws drwxr-xr-x 2 root root 4096 szept 5 19:43 xtend drwxr-xr-x 6 root root 4096 szept 5 19:43 xterm drwxr-xr-x 7 root root 4096 szept 5 19:43 xterm-addon-fit drwxr-xr-x 5 root root 4096 szept 5 19:43 xterm-addon-search drwxr-xr-x 5 root root 4096 szept 5 19:43 xterm-addon-search-bar drwxr-xr-x 5 root root 4096 szept 5 19:43 xterm-addon-web-links drwxr-xr-x 4 root root 4096 szept 5 19:43 @xtuc drwxr-xr-x 2 root root 4096 szept 5 19:43 y18n drwxr-xr-x 2 root root 4096 szept 5 19:43 yallist drwxr-xr-x 5 root root 4096 szept 5 19:43 yaml drwxr-xr-x 5 root root 4096 szept 5 19:43 yargs drwxr-xr-x 3 root root 4096 szept 5 19:43 yargs-parser drwxr-xr-x 5 root root 4096 szept 5 19:43 yarn-deduplicate drwxr-xr-x 3 root root 4096 szept 5 19:43 @yarnpkg drwxr-xr-x 2 root root 4096 szept 5 19:43 yocto-queue drwxr-xr-x 4 root root 4096 szept 5 19:43 yup root@beeservers:/var/www/pterodactyl#