mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 12:13:10 -05:00
Bumps the minor-and-patch group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1030.0` | `3.1033.0` | | [@aws-sdk/lib-storage](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage) | `3.1030.0` | `3.1033.0` | | [isbot](https://github.com/omrilotan/isbot) | `5.1.38` | `5.1.39` | | [markdown-to-jsx](https://github.com/quantizor/markdown-to-jsx/tree/HEAD/lib) | `9.7.15` | `9.7.16` | | [partysocket](https://github.com/cloudflare/partykit/tree/HEAD/packages/partysocket) | `1.1.16` | `1.1.18` | | [remix-i18next](https://github.com/sergiodxa/remix-i18next) | `7.4.2` | `7.5.0` | | [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.4.1` | `6.6.0` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.8` | `8.0.9` | Updates `@aws-sdk/client-s3` from 3.1030.0 to 3.1033.0 - [Release notes](https://github.com/aws/aws-sdk-js-v3/releases) - [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1033.0/clients/client-s3) Updates `@aws-sdk/lib-storage` from 3.1030.0 to 3.1033.0 - [Release notes](https://github.com/aws/aws-sdk-js-v3/releases) - [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/lib/lib-storage/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1033.0/lib/lib-storage) Updates `isbot` from 5.1.38 to 5.1.39 - [Changelog](https://github.com/omrilotan/isbot/blob/main/CHANGELOG.md) - [Commits](https://github.com/omrilotan/isbot/compare/v5.1.38...v5.1.39) Updates `markdown-to-jsx` from 9.7.15 to 9.7.16 - [Release notes](https://github.com/quantizor/markdown-to-jsx/releases) - [Changelog](https://github.com/quantizor/markdown-to-jsx/blob/main/lib/CHANGELOG.md) - [Commits](https://github.com/quantizor/markdown-to-jsx/commits/markdown-to-jsx@9.7.16/lib) Updates `partysocket` from 1.1.16 to 1.1.18 - [Release notes](https://github.com/cloudflare/partykit/releases) - [Changelog](https://github.com/cloudflare/partykit/blob/main/packages/partysocket/CHANGELOG.md) - [Commits](https://github.com/cloudflare/partykit/commits/partysocket@1.1.18/packages/partysocket) Updates `remix-i18next` from 7.4.2 to 7.5.0 - [Release notes](https://github.com/sergiodxa/remix-i18next/releases) - [Commits](https://github.com/sergiodxa/remix-i18next/compare/v7.4.2...v7.5.0) Updates `knip` from 6.4.1 to 6.6.0 - [Release notes](https://github.com/webpro-nl/knip/releases) - [Commits](https://github.com/webpro-nl/knip/commits/knip@6.6.0/packages/knip) Updates `vite` from 8.0.8 to 8.0.9 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.0.9/packages/vite) --- updated-dependencies: - dependency-name: "@aws-sdk/client-s3" dependency-version: 3.1033.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@aws-sdk/lib-storage" dependency-version: 3.1033.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: isbot dependency-version: 5.1.39 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: markdown-to-jsx dependency-version: 9.7.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: partysocket dependency-version: 1.1.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: remix-i18next dependency-version: 7.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: knip dependency-version: 6.6.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: vite dependency-version: 8.0.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
134 lines
5.0 KiB
JSON
134 lines
5.0 KiB
JSON
{
|
|
"name": "sendou.ink",
|
|
"version": "3.0.0",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.33.0",
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"scripts": {
|
|
"deploy": "pnpm install --frozen-lockfile && pnpm run build",
|
|
"build": "react-router build",
|
|
"dev": "cross-env DB_PATH=db.sqlite3 pnpm run migrate up && pnpm run setup && react-router dev --host",
|
|
"dev:prod": "cross-env DB_PATH=db-prod.sqlite3 VITE_PROD_MODE=true react-router dev --host",
|
|
"start": "pnpm run migrate up && react-router-serve build/server/index.js",
|
|
"migrate": "ley",
|
|
"migrate:prod": "cross-env DB_PATH=db-prod.sqlite3 pnpm run migrate up",
|
|
"check-translation-jsons": "node --experimental-strip-types scripts/check-translation-jsons.ts",
|
|
"check-translation-jsons:no-write": "node --experimental-strip-types scripts/check-translation-jsons.ts --no-write",
|
|
"check-homemade-badges": "node --experimental-strip-types scripts/check-homemade-badges.ts",
|
|
"check-articles": "tsx scripts/check-articles.ts",
|
|
"refresh-prod-db": "node --experimental-strip-types scripts/refresh-prod-db.ts && pnpm run migrate:prod",
|
|
"biome:check": "biome check --error-on-warnings .",
|
|
"biome:fix": "biome check --error-on-warnings --write .",
|
|
"biome:fix:unsafe": "biome check --error-on-warnings --write --unsafe .",
|
|
"typecheck": "react-router typegen && tsc --noEmit",
|
|
"typecheck:scripts": "tsc --noEmit -p scripts",
|
|
"test:unit:browser": "cross-env VITE_SITE_DOMAIN=http://localhost:5173 BROWSER_HEADLESS=true vitest --silent=passed-only run",
|
|
"test:browser:ui": "cross-env VITE_SITE_DOMAIN=http://localhost:5173 vitest --silent=passed-only --project browser",
|
|
"test:unit:browser:ui": "cross-env VITE_SITE_DOMAIN=http://localhost:5173 vitest --silent=passed-only",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:flaky-detect": "playwright test --repeat-each=10 --max-failures=1",
|
|
"test:e2e:generate-seeds": "cross-env DB_PATH=db-test.sqlite3 pnpm run migrate up && cross-env DB_PATH=db-test.sqlite3 vite-node scripts/generate-e2e-seed-dbs.ts",
|
|
"check-test-db-migrations": "node --experimental-strip-types scripts/check-test-db-migrations.ts",
|
|
"checks": "pnpm run biome:fix && pnpm run test:unit:browser && pnpm run check-translation-jsons && pnpm run typecheck && pnpm run knip && pnpm run check-test-db-migrations",
|
|
"setup": "cross-env DB_PATH=db.sqlite3 vite-node ./scripts/setup.ts",
|
|
"i18n:sync": "i18next-locales-sync -e true -p en -s da de es-ES es-US fr-CA fr-EU he it ja ko nl pl pt-BR ru zh -l locales && pnpm run biome:fix",
|
|
"knip": "knip",
|
|
"sync-weapon-params": "tsx scripts/sync-weapon-params.ts"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "3.1033.0",
|
|
"@aws-sdk/lib-storage": "3.1033.0",
|
|
"@date-fns/tz": "1.4.1",
|
|
"@dnd-kit/core": "6.3.1",
|
|
"@dnd-kit/modifiers": "9.0.0",
|
|
"@dnd-kit/sortable": "10.0.0",
|
|
"@dnd-kit/utilities": "3.2.2",
|
|
"@epic-web/cachified": "5.6.2",
|
|
"@faker-js/faker": "10.4.0",
|
|
"@formatjs/intl-durationformat": "0.10.4",
|
|
"@internationalized/date": "3.12.1",
|
|
"@react-router/node": "7.14.1",
|
|
"@react-router/serve": "7.14.1",
|
|
"@remix-run/form-data-parser": "0.16.0",
|
|
"@tldraw/tldraw": "3.12.1",
|
|
"@zumer/snapdom": "2.9.0",
|
|
"aws-sdk": "2.1693.0",
|
|
"better-sqlite3": "12.9.0",
|
|
"clsx": "2.1.1",
|
|
"compressorjs": "1.3.0",
|
|
"date-fns": "4.1.0",
|
|
"edmonds-blossom-fixed": "1.0.1",
|
|
"gray-matter": "4.0.3",
|
|
"i18next": "25.10.10",
|
|
"i18next-browser-languagedetector": "8.2.1",
|
|
"i18next-http-backend": "3.0.5",
|
|
"ics": "3.11.0",
|
|
"isbot": "5.1.39",
|
|
"jsoncrush": "1.1.8",
|
|
"kysely": "0.28.16",
|
|
"lru-cache": "11.3.5",
|
|
"lucide-react": "1.8.0",
|
|
"markdown-to-jsx": "9.7.16",
|
|
"nanoid": "5.1.9",
|
|
"neverthrow": "8.2.0",
|
|
"node-cron": "4.2.1",
|
|
"nprogress": "0.2.0",
|
|
"openskill": "4.1.1",
|
|
"p-limit": "7.3.0",
|
|
"partysocket": "1.1.18",
|
|
"react": "19.2.5",
|
|
"react-aria-components": "1.17.0",
|
|
"react-charts": "3.0.0-beta.57",
|
|
"react-dom": "19.2.5",
|
|
"react-error-boundary": "6.1.1",
|
|
"react-flip-toolkit": "7.2.4",
|
|
"react-i18next": "16.6.6",
|
|
"react-router": "7.14.1",
|
|
"react-use": "17.6.0",
|
|
"react-use-draggable-scroll": "0.4.7",
|
|
"remeda": "2.33.7",
|
|
"remix-auth": "4.2.0",
|
|
"remix-auth-oauth2": "3.4.1",
|
|
"remix-i18next": "7.5.0",
|
|
"slugify": "1.6.9",
|
|
"swr": "2.4.1",
|
|
"web-push": "3.6.7",
|
|
"zod": "4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.4.13",
|
|
"@playwright/test": "1.59.1",
|
|
"@react-router/dev": "7.14.1",
|
|
"@types/better-sqlite3": "7.6.13",
|
|
"@types/node": "25.6.0",
|
|
"@types/node-cron": "3.0.11",
|
|
"@types/nprogress": "0.2.3",
|
|
"@types/react": "19.2.14",
|
|
"@types/react-dom": "19.2.3",
|
|
"@types/web-push": "3.6.4",
|
|
"@vitest/browser-playwright": "4.1.4",
|
|
"@vitest/ui": "4.1.4",
|
|
"babel-plugin-react-compiler": "19.1.0-rc.3",
|
|
"cross-env": "10.1.0",
|
|
"dotenv": "17.4.2",
|
|
"i18next-locales-sync": "2.1.1",
|
|
"knip": "6.6.0",
|
|
"ley": "0.8.1",
|
|
"sql-formatter": "15.7.3",
|
|
"tsx": "4.21.0",
|
|
"typescript": "6.0.3",
|
|
"vite": "8.0.9",
|
|
"vite-node": "6.0.0",
|
|
"vite-plugin-babel": "1.6.0",
|
|
"vitest": "4.1.4",
|
|
"vitest-browser-react": "2.2.0"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"better-sqlite3",
|
|
"esbuild"
|
|
]
|
|
}
|
|
}
|