This commit is contained in:
Luke Vella 2025-04-25 18:03:57 +01:00
parent 1e46f62e5d
commit 20e9ebbf7a
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
6 changed files with 17702 additions and 8 deletions

View file

@ -28,13 +28,14 @@
"intl-messageformat": "^10.7.15", "intl-messageformat": "^10.7.15",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"nanoid": "^5.0.9", "nanoid": "^5.0.9",
"next": "^14.2.25",
"next-mdx-remote": "^5.0.0", "next-mdx-remote": "^5.0.0",
"next-seo": "^6.1.0", "next-seo": "^6.1.0",
"react-i18next": "^15.4.1", "react-i18next": "^15.4.1",
"react-use": "^17.4.0" "react-use": "^17.4.0"
}, },
"devDependencies": { "devDependencies": {
"@next/bundle-analyzer": "^12.3.4", "@next/bundle-analyzer": "^14.2.25",
"@rallly/eslint-config": "workspace:*", "@rallly/eslint-config": "workspace:*",
"@rallly/tsconfig": "workspace:*", "@rallly/tsconfig": "workspace:*",
"@types/color-hash": "^1.0.2", "@types/color-hash": "^1.0.2",

View file

@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
// NOTE: This file should not be edited // NOTE: This file should not be edited
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View file

@ -23,7 +23,7 @@
"@aws-sdk/client-s3": "^3.645.0", "@aws-sdk/client-s3": "^3.645.0",
"@aws-sdk/s3-request-presigner": "^3.645.0", "@aws-sdk/s3-request-presigner": "^3.645.0",
"@hookform/resolvers": "^3.3.1", "@hookform/resolvers": "^3.3.1",
"@next/bundle-analyzer": "^12.3.4", "@next/bundle-analyzer": "^14.2.25",
"@panva/hkdf": "^1.2.1", "@panva/hkdf": "^1.2.1",
"@radix-ui/react-radio-group": "^1.2.3", "@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2", "@radix-ui/react-slot": "^1.1.2",
@ -36,7 +36,7 @@
"@rallly/posthog": "workspace:*", "@rallly/posthog": "workspace:*",
"@rallly/tailwind-config": "workspace:*", "@rallly/tailwind-config": "workspace:*",
"@rallly/ui": "workspace:*", "@rallly/ui": "workspace:*",
"@sentry/nextjs": "^9.14.0", "@sentry/nextjs": "^8.49.0",
"@svgr/webpack": "^6.5.1", "@svgr/webpack": "^6.5.1",
"@t3-oss/env-nextjs": "^0.11.0", "@t3-oss/env-nextjs": "^0.11.0",
"@tanstack/react-query": "^4.0.0", "@tanstack/react-query": "^4.0.0",
@ -72,6 +72,7 @@
"micro": "^10.0.1", "micro": "^10.0.1",
"motion": "^12.6.2", "motion": "^12.6.2",
"nanoid": "^5.0.9", "nanoid": "^5.0.9",
"next": "^14.2.25",
"next-auth": "^5.0.0-beta.25", "next-auth": "^5.0.0-beta.25",
"php-serialize": "^4.1.1", "php-serialize": "^4.1.1",
"postcss": "^8.4.31", "postcss": "^8.4.31",

View file

@ -3,10 +3,15 @@
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@/*": ["src/*"] "@/*": [
"src/*"
]
}, },
"strictNullChecks": true, "strictNullChecks": true,
"types": ["vitest/globals"] "types": [
"vitest/globals"
],
"target": "ES2017"
}, },
"include": [ "include": [
"**/*.ts", "**/*.ts",
@ -15,5 +20,10 @@
".next/types/**/*.ts", ".next/types/**/*.ts",
"vitest.config.mts" "vitest.config.mts"
], ],
"exclude": ["node_modules", ".next/**/*", "playwright-report", "test-results"] "exclude": [
"node_modules",
".next/**/*",
"playwright-report",
"test-results"
]
} }

View file

@ -43,7 +43,6 @@
"@types/react": "^18.2.48", "@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18", "@types/react-dom": "^18.2.18",
"dotenv-cli": "^7.1.0", "dotenv-cli": "^7.1.0",
"next": "^14.2.25",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"prettier": "^3.3.3", "prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8", "prettier-plugin-tailwindcss": "^0.6.8",

17683
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load diff