Skip to content

Commit 8301c9c

Browse files
authored
Merge pull request #1087 from mbifulco/feat/ai-hcd
Feat/ai-hcd
2 parents 60a1cd4 + 9280bc8 commit 8301c9c

4 files changed

Lines changed: 1744 additions & 1557 deletions

File tree

eslint.config.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import eslint from '@eslint/js';
55
import tsParser from '@typescript-eslint/parser';
66
import reactCompiler from 'eslint-plugin-react-compiler';
77
import unusedImports from 'eslint-plugin-unused-imports';
8+
import reactHooks from 'eslint-plugin-react-hooks';
89
import { configs } from 'typescript-eslint';
910

1011
const compat = new FlatCompat({
@@ -39,6 +40,7 @@ export default [
3940
plugins: {
4041
'unused-imports': unusedImports,
4142
'react-compiler': reactCompiler,
43+
'react-hooks': reactHooks,
4244
},
4345
languageOptions: {
4446
parser: tsParser,

package.json

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
},
2626
"dependencies": {
2727
"@cloudinary/url-gen": "^1.22.0",
28-
"@headlessui/react": "^2.2.8",
28+
"@headlessui/react": "^2.2.9",
2929
"@mdx-js/mdx": "^3.1.1",
3030
"@mdx-js/react": "^3.1.1",
31-
"@next/bundle-analyzer": "^15.5.3",
31+
"@next/bundle-analyzer": "^15.5.4",
3232
"@number-flow/react": "^0.5.10",
3333
"@radix-ui/react-slot": "^1.2.3",
34-
"@react-email/components": "^0.5.3",
35-
"@react-email/render": "^1.2.3",
34+
"@react-email/components": "^0.5.5",
35+
"@react-email/render": "^1.3.1",
3636
"@t3-oss/env-nextjs": "^0.13.8",
37-
"@tailwindcss/typography": "^0.5.18",
38-
"@tanstack/react-query": "^5.89.0",
39-
"@trpc/client": "11.5.1",
40-
"@trpc/next": "11.5.1",
41-
"@trpc/react-query": "11.5.1",
42-
"@trpc/server": "11.5.1",
37+
"@tailwindcss/typography": "^0.5.19",
38+
"@tanstack/react-query": "^5.90.2",
39+
"@trpc/client": "11.6.0",
40+
"@trpc/next": "11.6.0",
41+
"@trpc/react-query": "11.6.0",
42+
"@trpc/server": "11.6.0",
4343
"@types/mdx": "^2.0.13",
4444
"class-variance-authority": "^0.7.1",
4545
"clsx": "^2.1.1",
@@ -49,71 +49,71 @@
4949
"gray-matter": "^4.0.3",
5050
"lucide-react": "^0.544.0",
5151
"micro": "^10.0.1",
52-
"next": "15.5.3",
52+
"next": "15.5.4",
5353
"next-cloudinary": "^6.16.0",
5454
"next-mdx-remote": "5.0.0",
5555
"pluralize": "^8.0.0",
5656
"postcss": "^8.5.6",
57-
"posthog-js": "^1.266.2",
58-
"posthog-node": "^5.8.5",
57+
"posthog-js": "^1.269.1",
58+
"posthog-node": "^5.9.2",
5959
"prism-react-renderer": "^2.4.1",
60-
"react": "19.1.1",
60+
"react": "19.2.0",
6161
"react-aria": "^3.43.2",
62-
"react-dom": "19.1.1",
63-
"react-email": "4.2.11",
62+
"react-dom": "19.2.0",
63+
"react-email": "4.2.12",
6464
"react-hook-form": "^7.63.0",
6565
"react-icons": "^5.5.0",
6666
"react-stately": "^3.41.0",
6767
"rehype-img-size": "^1.0.1",
6868
"rehype-slug": "^6.0.0",
6969
"remark-gfm": "^4.0.1",
70-
"resend": "^6.1.0",
71-
"sass": "^1.93.0",
70+
"resend": "^6.1.2",
71+
"sass": "^1.93.2",
7272
"sharp": "^0.34.4",
7373
"slugify": "^1.6.6",
7474
"sonner": "^2.0.7",
7575
"superjson": "^2.2.2",
7676
"svix": "^1.76.1",
7777
"tailwind-merge": "^3.3.1",
78-
"zod": "^4.1.9"
78+
"zod": "^4.1.11"
7979
},
8080
"devDependencies": {
8181
"@eslint/js": "^9.36.0",
8282
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
83-
"@next/eslint-plugin-next": "^15.5.3",
84-
"@playwright/test": "^1.55.0",
85-
"@tailwindcss/postcss": "^4.1.13",
86-
"@testing-library/jest-dom": "^6.8.0",
83+
"@next/eslint-plugin-next": "^15.5.4",
84+
"@playwright/test": "^1.55.1",
85+
"@tailwindcss/postcss": "^4.1.14",
86+
"@testing-library/jest-dom": "^6.9.1",
8787
"@testing-library/react": "^16.3.0",
8888
"@testing-library/user-event": "^14.6.1",
8989
"@types/eslint": "^9.6.1",
90-
"@types/node": "^24.5.2",
90+
"@types/node": "^24.6.2",
9191
"@types/pluralize": "^0.0.33",
92-
"@types/react": "19.1.13",
93-
"@typescript-eslint/eslint-plugin": "^8.44.0",
94-
"@typescript-eslint/parser": "^8.44.0",
95-
"@vitejs/plugin-react": "^5.0.3",
92+
"@types/react": "19.2.0",
93+
"@typescript-eslint/eslint-plugin": "^8.45.0",
94+
"@typescript-eslint/parser": "^8.45.0",
95+
"@vitejs/plugin-react": "^5.0.4",
9696
"depcheck": "^1.4.7",
97-
"dotenv": "^17.2.2",
97+
"dotenv": "^17.2.3",
9898
"eslint": "9.36.0",
99-
"eslint-config-next": "^15.5.3",
99+
"eslint-config-next": "^15.5.4",
100100
"eslint-config-prettier": "^10.1.8",
101-
"eslint-config-turbo": "^2.5.6",
101+
"eslint-config-turbo": "^2.5.8",
102102
"eslint-plugin-import": "^2.32.0",
103103
"eslint-plugin-jsx-a11y": "^6.10.2",
104104
"eslint-plugin-react": "^7.37.5",
105105
"eslint-plugin-react-compiler": "19.1.0-rc.2",
106-
"eslint-plugin-react-hooks": "^5.2.0",
106+
"eslint-plugin-react-hooks": "^6.1.0",
107107
"eslint-plugin-unused-imports": "^4.2.0",
108108
"github-slugger": "^2.0.0",
109-
"jiti": "^2.5.1",
110-
"jsdom": "^26.1.0",
109+
"jiti": "^2.6.1",
110+
"jsdom": "^27.0.0",
111111
"prettier": "^3.6.2",
112112
"prettier-plugin-tailwindcss": "^0.6.14",
113113
"schema-dts": "^1.1.5",
114-
"tailwindcss": "^4.1.13",
115-
"typescript": "5.9.2",
116-
"typescript-eslint": "^8.44.0",
114+
"tailwindcss": "^4.1.14",
115+
"typescript": "5.9.3",
116+
"typescript-eslint": "^8.45.0",
117117
"vite-tsconfig-paths": "^5.1.4",
118118
"vitest": "^3.2.4"
119119
},

0 commit comments

Comments
 (0)