familynido/web/familynido-web/package.json
Pablo Fernández a308041d59 Initial commit
FamilyNido — a self-hosted PWA for a single household: shared calendar,
chores, meals, school agenda, health records and a family wall. One
instance per family, deployable with `docker compose` on any home
server.

Stack: .NET 10 (ASP.NET Core Minimal APIs) + EF Core 10 + PostgreSQL 16
on the backend, Angular 21 (standalone, signals, zoneless) + Tailwind
CSS v4 on the frontend, SignalR for realtime, optional OIDC alongside
local credentials, integration via a versioned `/api/v1/**` public API.

See README.md for the module overview and how to deploy.
2026-05-13 00:23:14 +02:00

43 lines
1.2 KiB
JSON

{
"name": "familynido-web",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"extract-i18n": "ng extract-i18n --output-path src/locale --format xlf"
},
"private": true,
"packageManager": "npm@10.1.0",
"dependencies": {
"@angular/cdk": "^21.2.8",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/localize": "^21.2.9",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"@angular/service-worker": "^21.2.9",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.2.7",
"@angular/cli": "^21.2.7",
"@angular/compiler-cli": "^21.2.0",
"@axe-core/playwright": "^4.11.2",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.4",
"jsdom": "^28.0.0",
"postcss": "^8.5.10",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.4",
"typescript": "~5.9.2",
"vitest": "^4.0.8"
}
}