Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ For more details see the [Architecture and design decisions](./ARCHITECTURE.md)
> Basic familiarity with the technologies and services listed is required to make the best of this tech stack and template.

- [Node.js](https://nodejs.org/en/) v20.x
- [TypeScript](https://www.typescriptlang.org/) v5.7
- [Angular](https://angular.dev/) v19.1
- [Angular Material](https://material.angular.io/) v19.1
- [TypeScript](https://www.typescriptlang.org/) v5.8
- [Angular](https://angular.dev/) v19.2
- [Angular Material](https://material.angular.io/) v19.2
- [Tailwind CSS](https://tailwindcss.com/) v4.0
- [NgRx Signals](https://ngrx.io/guide/signals) v19.0
- [RxFire](https://github.com/FirebaseExtended/rxfire) v6.1
Expand Down
2 changes: 1 addition & 1 deletion TEMPLATE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.0.0-alpha.6
v1.0.0-alpha.7
58 changes: 29 additions & 29 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,45 +17,44 @@
"node": "20",
"pnpm": "10"
},
"packageManager": "pnpm@10.4.1",
"packageManager": "pnpm@10.5.2",
"private": true,
"dependencies": {
"@angular/animations": "^19.1.7",
"@angular/cdk": "19.1.5",
"@angular/common": "^19.1.7",
"@angular/compiler": "^19.1.7",
"@angular/core": "^19.1.7",
"@angular/forms": "^19.1.7",
"@angular/material": "19.1.5",
"@angular/platform-browser": "^19.1.7",
"@angular/platform-browser-dynamic": "^19.1.7",
"@angular/platform-server": "^19.1.7",
"@angular/router": "^19.1.7",
"@angular/service-worker": "^19.1.7",
"@angular/ssr": "^19.1.8",
"@angular/cdk": "19.2.1",
"@angular/common": "^19.2.0",
"@angular/compiler": "^19.2.0",
"@angular/core": "^19.2.0",
"@angular/forms": "^19.2.0",
"@angular/material": "19.2.1",
"@angular/platform-browser": "^19.2.0",
"@angular/platform-browser-dynamic": "^19.2.0",
"@angular/platform-server": "^19.2.0",
"@angular/router": "^19.2.0",
"@angular/service-worker": "^19.2.0",
"@angular/ssr": "^19.2.0",
"@ngrx/operators": "^19.0.1",
"@ngrx/signals": "^19.0.1",
"consola": "^3.4.0",
"express": "^4.21.2",
"firebase": "^11.3.1",
"firebase": "^11.4.0",
"ngxtension": "^4.3.2",
"rxfire": "^6.1.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.8",
"@angular/cli": "^19.1.8",
"@angular/compiler-cli": "^19.1.7",
"@angular-devkit/build-angular": "^19.2.0",
"@angular/cli": "^19.2.0",
"@angular/compiler-cli": "^19.2.0",
"@ngrx/eslint-plugin": "^19.0.1",
"@tailwindcss/postcss": "^4.0.8",
"@tailwindcss/postcss": "^4.0.9",
"@types/express": "^5.0.0",
"@types/jasmine": "~5.1.7",
"@types/node": "^22.13.5",
"angular-eslint": "^19.1.0",
"@types/node": "^22.13.8",
"angular-eslint": "^19.2.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-prettier": "^10.0.2",
"jasmine-core": "~5.6.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
Expand All @@ -64,20 +63,21 @@
"karma-jasmine-html-reporter": "~2.1.0",
"ng-mocks": "^14.13.2",
"postcss": "^8.5.3",
"prettier": "^3.5.2",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.8",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.1"
"tailwindcss": "^4.0.9",
"typescript": "~5.8.2",
"typescript-eslint": "^8.26.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"protobufjs",
"nx",
"@firebase/util",
"@parcel/watcher",
"esbuild",
"lmdb",
"msgpackr-extract",
"lmdb"
"nx",
"protobufjs"
]
}
}
2,940 changes: 1,558 additions & 1,382 deletions app/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions app/src/app/app.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { ApplicationConfig, isDevMode, provideZoneChangeDetection } from '@angular/core';
import { MAT_FORM_FIELD_DEFAULT_OPTIONS } from '@angular/material/form-field';
import { provideClientHydration, withEventReplay } from '@angular/platform-browser';
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
import { provideRouter, withComponentInputBinding, withRouterConfig } from '@angular/router';
import { provideServiceWorker } from '@angular/service-worker';
import { routes } from './app.routes';
Expand All @@ -15,7 +14,6 @@ export const appConfig: ApplicationConfig = {
withRouterConfig({ paramsInheritanceStrategy: 'always' }),
),
provideClientHydration(withEventReplay()),
provideAnimationsAsync(),
provideServiceWorker('ngsw-worker.js', {
enabled: !isDevMode(),
registrationStrategy: 'registerWhenStable:30000',
Expand Down
1 change: 1 addition & 0 deletions app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"erasableSyntaxOnly": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
Expand Down
1 change: 1 addition & 0 deletions firebase/common/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"composite": true,
"erasableSyntaxOnly": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
Expand Down
15 changes: 8 additions & 7 deletions firebase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"node": "20",
"pnpm": "10"
},
"packageManager": "pnpm@10.4.1",
"packageManager": "pnpm@10.5.2",
"main": "functions/lib/index.js",
"dependencies": {
"@google-cloud/functions-framework": "^3.4.5",
Expand All @@ -29,19 +29,20 @@
"devDependencies": {
"@firebase/rules-unit-testing": "^4.0.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-prettier": "^10.0.2",
"firebase-functions-test": "^3.4.0",
"firebase-tools": "^13.31.2",
"firebase-tools": "^13.32.0",
"globals": "^16.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.2",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.1",
"vitest": "^3.0.6"
"prettier": "^3.5.3",
"typescript": "~5.8.2",
"typescript-eslint": "^8.26.0",
"vitest": "^3.0.7"
},
"private": true,
"pnpm": {
"onlyBuiltDependencies": [
"@firebase/util",
"esbuild",
"protobufjs",
"re2"
Expand Down
Loading