mplus-studio / package.json
joelsefanja's picture
Deploy Mplus Studio
d1bff6b verified
Raw
History Blame Contribute Delete
1.92 kB
{
"name": "mplus-studio",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:prod": "npm --workspace backend run start",
"build": "ng build",
"build:all": "npm run build && npm run backend:build",
"watch": "ng build --watch --configuration development",
"test": "npm run test:unit && npm run test:component && npm run test:integration",
"test:unit": "ng test --watch=false --include \"src/**/*.unit.spec.ts\"",
"test:component": "ng test --watch=false --include \"src/**/*.component.spec.ts\"",
"test:integration": "ng test --watch=false --include \"src/**/*.integration.spec.ts\"",
"test:e2e": "playwright test",
"test:e2e:kaggle": "playwright test e2e/studio-flow.spec.ts",
"deploy:check": "uv run python scripts/deploy-check.py",
"deploy:huggingface": "uv run --with huggingface_hub python scripts/deploy-huggingface.py",
"kaggle:cache:push": "uv run --with kaggle kaggle kernels push -p kaggle-flux2-cache --accelerator NvidiaTeslaT4 -t 7200",
"test:backend": "npm --workspace backend test",
"backend:dev": "npm --workspace backend run dev",
"backend:build": "npm --workspace backend run build",
"test:all": "npm run test && npm run test:backend && npm run test:e2e"
},
"private": true,
"workspaces": ["backend"],
"packageManager": "npm@10.8.2",
"dependencies": {
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.2.13",
"@angular/cli": "^21.2.13",
"@angular/compiler-cli": "^21.2.0",
"@playwright/test": "^1.60.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.1",
"typescript": "~5.9.2",
"vitest": "^4.1.7"
}
}