mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 15:44:22 +00:00
Updated dependencies to fix Next.js and React CVE vulnerabilities. The fix-react2shell-next tool automatically updated the following packages to their secure versions: - next - react-server-dom-webpack - react-server-dom-parcel - react-server-dom-turbopack All package.json files have been scanned and vulnerable versions have been patched to the correct fixed versions based on the official React advisory. Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com>
33 lines
793 B
JSON
33 lines
793 B
JSON
{
|
|
"name": "web",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"lint:fix": "next lint --fix",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@workspace/ui": "workspace:*",
|
|
"lucide-react": "^0.475.0",
|
|
"next": "16.0.10",
|
|
"next-themes": "^0.4.6",
|
|
"react": "^19.2.1",
|
|
"react-dom": "^19.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.1.17",
|
|
"@types/node": "^20.19.25",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@workspace/eslint-config": "workspace:^",
|
|
"@workspace/typescript-config": "workspace:*",
|
|
"eslint": "^9.39.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|