NODEDC_1C/llm_normalizer/package.json

21 lines
985 B
JSON

{
"name": "llm-normalizer-workspace",
"version": "0.1.0",
"private": true,
"description": "Workspace runner for backend + frontend",
"scripts": {
"install:all": "npm --prefix backend install && npm --prefix frontend install",
"dev:backend": "npm --prefix backend run dev",
"dev:frontend": "npm --prefix frontend run dev",
"dev:all": "concurrently -k -n BACKEND,FRONTEND -c green,cyan \"npm --prefix backend run dev\" \"npm --prefix frontend run dev\"",
"dev:all:mcp": "set FEATURE_ASSISTANT_MCP_RUNTIME_V1=1&& set ASSISTANT_MCP_PROXY_URL=http://127.0.0.1:6003&& set ASSISTANT_MCP_CHANNEL=default&& npm run dev:all",
"build:all": "npm --prefix backend run build && npm --prefix frontend run build",
"test:backend": "npm --prefix backend test",
"artifacts:bundle": "node scripts/archiveRunArtifacts.mjs",
"artifacts:bundle:clean": "node scripts/archiveRunArtifacts.mjs --clean"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}