mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
* chore: upgrade Next.js in evals/visualizer from 16.1.4 to 16.2.6 Resolves multiple security advisories in Next.js 16.1.4 including middleware/proxy bypass, SSRF, DoS, and XSS issues. The evals visualizer is an internal dev tool with no external exposure, but keeping dependencies current reduces supply-chain risk. * fix: remove redundancy in choice of package manager to avoid drift --------- Co-authored-by: Abhishek Kumar <abhishek@a6k.me>
26 lines
532 B
JSON
26 lines
532 B
JSON
{
|
|
"name": "visualizer",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"next": "16.2.6",
|
|
"react": "19.2.3",
|
|
"react-dom": "19.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.2.6",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|