Initialize docker build configuration.

This commit is contained in:
Florian THIERRY
2024-09-18 10:18:40 +02:00
parent ef32572521
commit 0e2fb945a4
13 changed files with 275 additions and 49 deletions

View File

@@ -3,10 +3,15 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4201 --proxy-config proxy.conf.json",
"start": "npm run start-en",
"start-en": "ng serve --port 4201 --configuration=en --proxy-config proxy.conf.json",
"start-fr": "ng serve --port 4201 --configuration=fr --proxy-config proxy.conf.json",
"build": "ng build",
"build-prod-en": "ng build --configuration=production-en --base-href",
"build-prod-fr": "ng build --configuration=production-fr --base-href",
"watch": "ng build --watch --configuration development",
"test": "ng test"
"test": "ng test",
"i18n": "ng extract-i18n --output-path src/locale --format=json"
},
"private": true,
"dependencies": {
@@ -28,6 +33,7 @@
"@angular-devkit/build-angular": "^17.0.5",
"@angular/cli": "^17.0.5",
"@angular/compiler-cli": "^17.0.0",
"@angular/localize": "^17.3.12",
"@types/jasmine": "~5.1.0",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",