mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-05 20:21:50 +02:00
Fix deps
This commit is contained in:
parent
1e46f62e5d
commit
20e9ebbf7a
6 changed files with 17702 additions and 8 deletions
|
@ -28,13 +28,14 @@
|
|||
"intl-messageformat": "^10.7.15",
|
||||
"lodash": "^4.17.21",
|
||||
"nanoid": "^5.0.9",
|
||||
"next": "^14.2.25",
|
||||
"next-mdx-remote": "^5.0.0",
|
||||
"next-seo": "^6.1.0",
|
||||
"react-i18next": "^15.4.1",
|
||||
"react-use": "^17.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@next/bundle-analyzer": "^12.3.4",
|
||||
"@next/bundle-analyzer": "^14.2.25",
|
||||
"@rallly/eslint-config": "workspace:*",
|
||||
"@rallly/tsconfig": "workspace:*",
|
||||
"@types/color-hash": "^1.0.2",
|
||||
|
|
2
apps/web/next-env.d.ts
vendored
2
apps/web/next-env.d.ts
vendored
|
@ -2,4 +2,4 @@
|
|||
/// <reference types="next/image-types/global" />
|
||||
|
||||
// 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.
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
"@aws-sdk/client-s3": "^3.645.0",
|
||||
"@aws-sdk/s3-request-presigner": "^3.645.0",
|
||||
"@hookform/resolvers": "^3.3.1",
|
||||
"@next/bundle-analyzer": "^12.3.4",
|
||||
"@next/bundle-analyzer": "^14.2.25",
|
||||
"@panva/hkdf": "^1.2.1",
|
||||
"@radix-ui/react-radio-group": "^1.2.3",
|
||||
"@radix-ui/react-slot": "^1.1.2",
|
||||
|
@ -36,7 +36,7 @@
|
|||
"@rallly/posthog": "workspace:*",
|
||||
"@rallly/tailwind-config": "workspace:*",
|
||||
"@rallly/ui": "workspace:*",
|
||||
"@sentry/nextjs": "^9.14.0",
|
||||
"@sentry/nextjs": "^8.49.0",
|
||||
"@svgr/webpack": "^6.5.1",
|
||||
"@t3-oss/env-nextjs": "^0.11.0",
|
||||
"@tanstack/react-query": "^4.0.0",
|
||||
|
@ -72,6 +72,7 @@
|
|||
"micro": "^10.0.1",
|
||||
"motion": "^12.6.2",
|
||||
"nanoid": "^5.0.9",
|
||||
"next": "^14.2.25",
|
||||
"next-auth": "^5.0.0-beta.25",
|
||||
"php-serialize": "^4.1.1",
|
||||
"postcss": "^8.4.31",
|
||||
|
|
|
@ -3,10 +3,15 @@
|
|||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["src/*"]
|
||||
"@/*": [
|
||||
"src/*"
|
||||
]
|
||||
},
|
||||
"strictNullChecks": true,
|
||||
"types": ["vitest/globals"]
|
||||
"types": [
|
||||
"vitest/globals"
|
||||
],
|
||||
"target": "ES2017"
|
||||
},
|
||||
"include": [
|
||||
"**/*.ts",
|
||||
|
@ -15,5 +20,10 @@
|
|||
".next/types/**/*.ts",
|
||||
"vitest.config.mts"
|
||||
],
|
||||
"exclude": ["node_modules", ".next/**/*", "playwright-report", "test-results"]
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
".next/**/*",
|
||||
"playwright-report",
|
||||
"test-results"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -43,7 +43,6 @@
|
|||
"@types/react": "^18.2.48",
|
||||
"@types/react-dom": "^18.2.18",
|
||||
"dotenv-cli": "^7.1.0",
|
||||
"next": "^14.2.25",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^3.3.3",
|
||||
"prettier-plugin-tailwindcss": "^0.6.8",
|
||||
|
|
17683
pnpm-lock.yaml
generated
Normal file
17683
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue