mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-10-30 03:36:03 -04:00
catch up on deps
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
---
|
||||
description:
|
||||
globs: *.tsx,app/globals.css
|
||||
alwaysApply: false
|
||||
---
|
||||
This rule provides standards for frontend components, ensuring consistent styling and animations:
|
||||
|
||||
- Use Tailwind CSS v4 and shadcn/ui (with Radix primitives) for components and styling.
|
||||
- Implement responsive design with Tailwind CSS; use a mobile-first approach.
|
||||
- Dynamic theme switching (light/dark mode) is supported through CSS variables. See [globals.css](mdc:app/globals.css).
|
||||
- Import and use `cn()` utility from [utils.ts](mdc:lib/utils.ts) for conditional class names.
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
description:
|
||||
globs:
|
||||
alwaysApply: true
|
||||
---
|
||||
This rule provides standards for using Next.js features:
|
||||
|
||||
- Project uses latest Next.js features like App Router, Partial Prerendering. See [next.config.ts](mdc:next.config.ts).
|
||||
- Always choose React Server Components (RSC) when possible, use Client Components only when necessary (minimize `use client`, `useEffect`, and `setState`).
|
||||
- Always prefer Server Actions over API routes.
|
||||
- Environment variables must be validated and imported from [env.ts](mdc:lib/env.ts). Never use `process.env` directly; always from [env.ts](mdc:lib/env.ts).
|
||||
- Use MDX for content-heavy pages. Also supports third-party embeds like YouTube videos, Tweets, etc; see [mdx-components.tsx](mdc:mdx-components.tsx).
|
||||
- Always use Next.js' optimized `<Image />` tag for images, never `<img>`.
|
||||
- Performance optimization is a priority (bundle sizes, image optimization, etc.)
|
||||
- Use Next.js caching and revalidation strategies (`revalidate`, `tags`) for all data fetching.
|
||||
- Store and retrieve data from Upstash Redis as the primary data store.
|
||||
- Ensure all features and APIs are compatible with Vercel's serverless environment.
|
||||
- Accessibility is important. Maintain proper heading levels, skip links, etc.
|
||||
32
package.json
32
package.json
@@ -24,8 +24,8 @@
|
||||
"@mdx-js/loader": "^3.1.0",
|
||||
"@mdx-js/react": "^3.1.0",
|
||||
"@neondatabase/serverless": "^1.0.0",
|
||||
"@next/bundle-analyzer": "15.4.0-canary.26",
|
||||
"@next/mdx": "15.4.0-canary.26",
|
||||
"@next/bundle-analyzer": "15.4.0-canary.34",
|
||||
"@next/mdx": "15.4.0-canary.34",
|
||||
"@octokit/graphql": "^8.2.2",
|
||||
"@octokit/graphql-schema": "^15.26.0",
|
||||
"@radix-ui/react-alert-dialog": "^1.1.13",
|
||||
@@ -47,11 +47,11 @@
|
||||
"date-fns": "^4.1.0",
|
||||
"drizzle-orm": "^0.43.1",
|
||||
"fast-glob": "^3.3.3",
|
||||
"feed": "^4.2.2",
|
||||
"feed": "^5.0.1",
|
||||
"geist": "^1.4.2",
|
||||
"html-entities": "^2.6.0",
|
||||
"lucide-react": "0.509.0",
|
||||
"next": "15.4.0-canary.26",
|
||||
"lucide-react": "0.510.0",
|
||||
"next": "15.4.0-canary.34",
|
||||
"react": "19.1.0",
|
||||
"react-activity-calendar": "^2.7.11",
|
||||
"react-countup": "^6.5.3",
|
||||
@@ -81,10 +81,10 @@
|
||||
"remark-strip-mdx-imports-exports": "^1.0.1",
|
||||
"resend": "^4.5.1",
|
||||
"server-only": "0.0.1",
|
||||
"shiki": "^3.4.0",
|
||||
"shiki": "^3.4.1",
|
||||
"sonner": "^2.0.3",
|
||||
"tailwind-merge": "^3.2.0",
|
||||
"tailwindcss": "^4.1.5",
|
||||
"tailwind-merge": "^3.3.0",
|
||||
"tailwindcss": "^4.1.6",
|
||||
"unified": "^11.0.5",
|
||||
"valibot": "^1.1.0"
|
||||
},
|
||||
@@ -92,18 +92,18 @@
|
||||
"@eslint/eslintrc": "^3.3.1",
|
||||
"@eslint/js": "^9.26.0",
|
||||
"@jakejarvis/eslint-config": "^4.0.7",
|
||||
"@tailwindcss/postcss": "^4.1.5",
|
||||
"@tailwindcss/postcss": "^4.1.6",
|
||||
"@types/mdx": "^2.0.13",
|
||||
"@types/node": "^22.15.17",
|
||||
"@types/react": "19.1.3",
|
||||
"@types/react-dom": "19.1.3",
|
||||
"@types/node": "^22.15.18",
|
||||
"@types/react": "19.1.4",
|
||||
"@types/react-dom": "19.1.5",
|
||||
"babel-plugin-react-compiler": "19.0.0-beta-af1b7da-20250417",
|
||||
"cross-env": "^7.0.3",
|
||||
"dotenv": "^16.5.0",
|
||||
"drizzle-kit": "^0.31.1",
|
||||
"eslint": "^9.26.0",
|
||||
"eslint-config-next": "15.4.0-canary.26",
|
||||
"eslint-config-prettier": "^10.1.3",
|
||||
"eslint-config-next": "15.4.0-canary.34",
|
||||
"eslint-config-prettier": "^10.1.5",
|
||||
"eslint-plugin-css-modules": "^2.12.0",
|
||||
"eslint-plugin-drizzle": "^0.2.3",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
@@ -114,7 +114,7 @@
|
||||
"eslint-plugin-react-compiler": "19.0.0-beta-af1b7da-20250417",
|
||||
"eslint-plugin-react-hooks": "^5.2.0",
|
||||
"husky": "^9.1.7",
|
||||
"lint-staged": "^15.5.2",
|
||||
"lint-staged": "^16.0.0",
|
||||
"postcss": "^8.5.3",
|
||||
"prettier": "^3.5.3",
|
||||
"prettier-plugin-tailwindcss": "^0.6.11",
|
||||
@@ -127,7 +127,7 @@
|
||||
"engines": {
|
||||
"node": ">=22.x"
|
||||
},
|
||||
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
|
||||
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
|
||||
"cacheDirectories": [
|
||||
"node_modules",
|
||||
".next/cache"
|
||||
|
||||
1074
pnpm-lock.yaml
generated
1074
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user