From 1c6ee96803dfb812e968c71315cc3f2cf6f234f8 Mon Sep 17 00:00:00 2001 From: Diego Aldana Date: Fri, 8 Aug 2025 20:43:42 -0400 Subject: [PATCH] fix(create-next-app): Add missing ESLint packages --- examples/with-eslint/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/with-eslint/package.json b/examples/with-eslint/package.json index 19aa40295ff20..98245e142fa8e 100644 --- a/examples/with-eslint/package.json +++ b/examples/with-eslint/package.json @@ -16,6 +16,8 @@ "@types/react": "^18.3.5", "@types/react-dom": "^18.3.0", "eslint": "^9", - "eslint-config-next": "latest" + "eslint-config-next": "latest", + "eslint-plugin-react-hooks": "^5.2.0", + "@next/eslint-plugin-next": "^15.4.6" } }