 Upgrading `next` from `14.2.3` to `14.2.26` ## Fixes Summary | File | Fix Explanation | | --------- | ---------------- | | <pre> /cognee-frontend/package.json </pre> | | | <pre> /cognee-frontend/package-lock.json </pre> | | | <pre> /cognee-frontend/src/app/layout.tsx </pre> | No changes are needed. The code uses the `Metadata` type and the `Inter` font from `next` in a manner compatible with recent Next.js versions, including the updated versions that patch the vulnerabilities. The usage of `Metadata`, the font import, and the RootLayout structure matches the current Next.js app router conventions. There are no breaking API changes or deprecations here requiring code modifications for compatibility. | --------- Co-authored-by: pensarapp[bot] <182705637+pensarapp[bot]@users.noreply.github.com>
28 lines
581 B
JSON
28 lines
581 B
JSON
{
|
|
"name": "cognee-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"classnames": "^2.5.1",
|
|
"ohmy-ui": "^0.0.6",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"uuid": "^9.0.1",
|
|
"next": "^14.2.26"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"@types/uuid": "^9.0.8",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "14.2.3",
|
|
"typescript": "^5"
|
|
}
|
|
}
|