Project ID: 5c70c098-1cf0-43a3-8216-6d4a673bfce2
I have a reicent build angular app but when I push it railway fails to build it, how can I get it to work?
Thanks in advance.
Package json:
{
"name": "lanhsahn-sis",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"packageManager": "[email protected]",
"dependencies": {
"@angular/animations": "^21.1.2",
"@angular/cdk": "~21.1.2",
"@angular/common": "^21.1.0",
"@angular/compiler": "^21.1.0",
"@angular/core": "^21.1.0",
"@angular/forms": "^21.1.0",
"@angular/material": "~21.1.2",
"@angular/material-moment-adapter": "^21.1.2",
"@angular/platform-browser": "^21.1.0",
"@angular/router": "^21.1.0",
"angular2-notifications": "^16.0.1",
"moment": "^2.30.1",
"ngx-cookie-service": "^21.1.0",
"ngx-flexible-layout": "^21.0.0",
"ngxsmk-datepicker": "^2.0.7",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.1.2",
"@angular/cli": "^21.1.2",
"@angular/compiler-cli": "^21.1.0",
"jsdom": "^27.1.0",
"typescript": "~5.9.2",
"vitest": "^4.0.8"
}
}