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>
18 lines
486 B
JSON
18 lines
486 B
JSON
{
|
|
"name": "goldenchart",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/shared",
|
|
"app",
|
|
"frontend"
|
|
],
|
|
"scripts": {
|
|
"build:frontend": "npm run build -w react-trading-chart",
|
|
"dev:app": "npm run dev -w @goldenchart/app",
|
|
"build:app": "npm run build -w @goldenchart/app",
|
|
"cap:sync": "npm run cap:sync -w @goldenchart/app",
|
|
"cap:android": "npm run cap:open:android -w @goldenchart/app",
|
|
"cap:ios": "npm run cap:open:ios -w @goldenchart/app"
|
|
}
|
|
}
|