first draft

This commit is contained in:
2026-06-09 17:36:46 +02:00
parent 6c385aebe4
commit 9df03fba90
46 changed files with 29915 additions and 498 deletions

View File

@@ -4,9 +4,13 @@
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
"build": "ng build --watch --output-hashing none --configuration production",
"test": "ng test",
"build:dev": "ng build --output-hashing none --watch --configuration development",
"serve": "node ./scripts/serve-dist.mjs",
"codegen": "graphql-codegen",
"client": "ng serve --port 4201 --watch --configuration development",
"plugin": "concurrently \"yarn build\" \"yarn serve\""
},
"prettier": {
"printWidth": 100,
@@ -22,13 +26,25 @@
},
"private": true,
"dependencies": {
"@angular/animations": "20",
"@angular/common": "^20.3.0",
"@angular/compiler": "^20.3.0",
"@angular/core": "^20.3.0",
"@angular/elements": "20",
"@angular/forms": "^20.3.0",
"@angular/platform-browser": "^20.3.0",
"@angular/router": "^20.3.0",
"@apollo/client": "^4.0.1",
"@phx/shared": "^0.1.3",
"@phx/shared-ui": "^0.1.3-b",
"@primeng/themes": "20",
"apollo-angular": "14.0.0",
"graphql": "^16",
"postcss": "^8.5.15",
"primeng": "20",
"rxjs": "~7.8.0",
"tailwindcss": "3",
"tailwindcss-primeui": "^0.6.1",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
@@ -36,13 +52,19 @@
"@angular/build": "^20.3.2",
"@angular/cli": "^20.3.2",
"@angular/compiler-cli": "^20.3.0",
"@graphql-codegen/cli": "^7.1.2",
"@graphql-codegen/typed-document-node": "^7.0.3",
"@graphql-codegen/typescript": "^6.0.2",
"@graphql-codegen/typescript-operations": "^6.0.3",
"@types/jasmine": "~5.1.0",
"concurrently": "^10.0.3",
"jasmine-core": "~5.9.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.9.2"
"serve": "^14.2.6",
"typescript": "5.9"
}
}
}