mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-22 06:26:28 +08:00
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.0.12 to 6.0.14. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v6.0.14</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.0.14/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.0.13</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.0.13/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/v6.0.14/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->6.0.14 (2025-04-03)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782">#19782</a>, fs check with svg and relative paths (<a href="48ee91df38
">48ee91d</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19782">#19782</a></li> </ul> <h2><!-- raw HTML omitted -->6.0.13 (2025-03-31)<!-- raw HTML omitted --></h2> <ul> <li>fix: fs check in transform middleware (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19761">#19761</a>) (<a href="1487f393f3
">1487f39</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19761">#19761</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="f678baacaf
"><code>f678baa</code></a> release: v6.0.14</li> <li><a href="48ee91df38
"><code>48ee91d</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782">#19782</a>, fs check with svg and relative paths</li> <li><a href="0eaadcf952
"><code>0eaadcf</code></a> release: v6.0.13</li> <li><a href="1487f393f3
"><code>1487f39</code></a> fix: fs check in transform middleware (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19761">#19761</a>)</li> <li>See full diff in <a href="https://github.com/vitejs/vite/commits/v6.0.14/packages/vite">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/monkeytypegame/monkeytype/network/alerts). </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Miodec <jack@monkeytype.com>
103 lines
3.2 KiB
JSON
103 lines
3.2 KiB
JSON
{
|
|
"name": "@monkeytype/frontend",
|
|
"license": "GPL-3.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"lint": "eslint \"./**/*.ts\"",
|
|
"validate-json": "npx gulp validate-json-schema",
|
|
"audit": "vite-bundle-visualizer",
|
|
"dep-graph": "madge -c -i \"dep-graph.png\" ./src/ts",
|
|
"ts-check": "tsc --noEmit",
|
|
"build": "npm run madge && vite build",
|
|
"madge": " madge --circular --extensions ts ./src",
|
|
"start": "vite preview --port 3000",
|
|
"dev": "vite dev",
|
|
"deploy-live": "npm run validate-json && npm run build && firebase deploy -P live --only hosting",
|
|
"deploy-preview": "npm run validate-json && npm run build && firebase hosting:channel:deploy preview -P live --expires 2h",
|
|
"test": "vitest run",
|
|
"test-coverage": "vitest run --coverage",
|
|
"dev-test": "concurrently --kill-others \"vite dev\" \"vitest\"",
|
|
"tsc": "tsc",
|
|
"knip": "knip",
|
|
"docker": "docker compose -f docker/compose.dev.yml up"
|
|
},
|
|
"engines": {
|
|
"node": "20.16.0"
|
|
},
|
|
"browserslist": [
|
|
"defaults"
|
|
],
|
|
"devDependencies": {
|
|
"@fortawesome/fontawesome-free": "5.15.4",
|
|
"@monkeytype/eslint-config": "workspace:*",
|
|
"@monkeytype/typescript-config": "workspace:*",
|
|
"@types/canvas-confetti": "1.4.3",
|
|
"@types/chartjs-plugin-trendline": "1.0.1",
|
|
"@types/damerau-levenshtein": "1.0.0",
|
|
"@types/howler": "2.2.7",
|
|
"@types/jquery": "3.5.14",
|
|
"@types/node": "20.14.11",
|
|
"@types/object-hash": "3.0.6",
|
|
"@types/subset-font": "1.4.3",
|
|
"@types/throttle-debounce": "2.1.0",
|
|
"@vitest/coverage-v8": "2.1.9",
|
|
"ajv": "8.12.0",
|
|
"autoprefixer": "10.4.20",
|
|
"concurrently": "8.2.2",
|
|
"dotenv": "16.4.5",
|
|
"eslint": "8.57.1",
|
|
"firebase-tools": "13.15.1",
|
|
"fontawesome-subset": "4.4.0",
|
|
"gulp": "4.0.2",
|
|
"gulp-eslint-new": "1.9.1",
|
|
"happy-dom": "15.10.2",
|
|
"madge": "8.0.0",
|
|
"normalize.css": "8.0.1",
|
|
"postcss": "8.4.31",
|
|
"sass": "1.70.0",
|
|
"subset-font": "2.3.0",
|
|
"typescript": "5.5.4",
|
|
"unplugin-inject-preload": "3.0.0",
|
|
"vite": "6.0.14",
|
|
"vite-bundle-visualizer": "1.0.1",
|
|
"vite-plugin-checker": "0.7.2",
|
|
"vite-plugin-filter-replace": "0.1.13",
|
|
"vite-plugin-html-inject": "1.1.2",
|
|
"vite-plugin-inspect": "0.8.3",
|
|
"vite-plugin-minify": "2.1.0",
|
|
"vite-plugin-pwa": "0.20.0",
|
|
"vitest": "2.1.9"
|
|
},
|
|
"dependencies": {
|
|
"@date-fns/utc": "1.2.0",
|
|
"@monkeytype/contracts": "workspace:*",
|
|
"@monkeytype/funbox": "workspace:*",
|
|
"@monkeytype/util": "workspace:*",
|
|
"@ts-rest/core": "3.51.0",
|
|
"balloon-css": "1.2.0",
|
|
"canvas-confetti": "1.5.1",
|
|
"chart.js": "3.7.1",
|
|
"chartjs-adapter-date-fns": "3.0.0",
|
|
"chartjs-plugin-annotation": "2.2.1",
|
|
"chartjs-plugin-trendline": "1.0.2",
|
|
"color-blend": "4.0.0",
|
|
"damerau-levenshtein": "1.0.8",
|
|
"date-fns": "3.6.0",
|
|
"firebase": "10.12.4",
|
|
"hangul-js": "0.2.6",
|
|
"howler": "2.2.3",
|
|
"html2canvas": "1.4.1",
|
|
"jquery": "3.7.1",
|
|
"jquery-color": "2.2.0",
|
|
"jquery.easing": "1.4.1",
|
|
"konami": "1.6.3",
|
|
"lz-ts": "1.1.2",
|
|
"object-hash": "3.0.0",
|
|
"slim-select": "2.9.2",
|
|
"stemmer": "2.0.1",
|
|
"throttle-debounce": "5.0.2",
|
|
"zod": "3.23.8",
|
|
"zod-urlsearchparams": "0.0.16"
|
|
}
|
|
}
|