9c620b32e2
서버 checkout에는 node_modules가 없어 npm run build만 실행하면 tsc를 찾지 못함. build-frontend.sh로 npm ci 후 workspace 빌드를 수행하고, frontend build 스크립트는 npx tsc/vite build로 통일. Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
766 B
JSON
32 lines
766 B
JSON
{
|
|
"name": "react-trading-chart",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "npx tsc && npx vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@stomp/stompjs": "^7.3.0",
|
|
"@xyflow/react": "^12.10.2",
|
|
"lightweight-charts": "^5.2.0",
|
|
"lightweight-charts-indicators": "^0.4.1",
|
|
"oakscriptjs": "^0.2.8",
|
|
"qrcode": "^1.5.4",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"sockjs-client": "^1.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/qrcode": "^1.5.6",
|
|
"@types/react": "^18.3.1",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@types/sockjs-client": "^1.5.4",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"typescript": "^5.5.4",
|
|
"vite": "^5.4.0"
|
|
}
|
|
}
|