Seed: Angular workspace (web/) for frontend tasks

ng new defaults, Angular 22.1, vitest unit-test builder — npm test runs
once and green under CI.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Honegger, Florian
2026-08-05 01:02:32 +02:00
parent 3f086f9dca
commit 605a952f7a
23 changed files with 8572 additions and 0 deletions

32
web/package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "web",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"packageManager": "npm@10.8.3",
"dependencies": {
"@angular/common": "^22.1.0",
"@angular/compiler": "^22.1.0",
"@angular/core": "^22.1.0",
"@angular/forms": "^22.1.0",
"@angular/platform-browser": "^22.1.0",
"@angular/router": "^22.1.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^22.1.2",
"@angular/cli": "^22.1.2",
"@angular/compiler-cli": "^22.1.0",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"typescript": "~6.0.2",
"vitest": "^4.0.8"
}
}