Files
stock_chart_site/web/package.json
tkrmagid 6c792305a9 fix(web): next + eslint-config-next ^14.2.33 보안 패치
Next.js 2025-12-11 보안 권고에 따라 14.2.x release line 의
최신 patched 버전으로 상향. 14.2.3 → ^14.2.33.

ref: https://nextjs.org/blog/security-update-2025-12-11
2026-05-20 23:33:28 +09:00

31 lines
748 B
JSON

{
"name": "stock-chart-site-web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev -p 3000 -H 0.0.0.0",
"build": "next build",
"start": "next start -p 3000 -H 0.0.0.0",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint"
},
"dependencies": {
"next": "^14.2.33",
"react": "18.3.1",
"react-dom": "18.3.1",
"lightweight-charts": "4.1.7"
},
"devDependencies": {
"@types/node": "20.12.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"typescript": "5.4.5",
"tailwindcss": "3.4.4",
"postcss": "8.4.38",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.33"
}
}