be5f5775ef
- ng update @angular/core@20 @angular/cli@20 @angular/material@20 @angular-eslint@20 @angular/google-maps@20 - Remove ng-chartist (abandoned, incompatible with Angular 20): replace <x-chartist> with <app-bars-chart> in dropzones-bar and jumps-by-month - Migrate all constructor injection to inject() function (ng generate @angular/core:inject, 67 files) - TypeScript 5.5 → 5.9.3 - DOCUMENT import moved from @angular/common to @angular/core (automatic migration) - tsconfig moduleResolution updated to "bundler"
81 lines
2.6 KiB
JSON
81 lines
2.6 KiB
JSON
{
|
|
"name": "adastra-app",
|
|
"version": "1.0.0",
|
|
"author": "Solide Apps <admin@unespace.com>",
|
|
"contributors": [
|
|
"Julien Gautier <julien.gautier@unespace.com>"
|
|
],
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"watch": "ng build --watch --configuration development",
|
|
"serve": "ng serve --configuration local --port 4201",
|
|
"dev": "APP_ENV=development ng serve --port 4300 --configuration development",
|
|
"local": "APP_ENV=local ng serve --port 4400 --configuration local",
|
|
"lint": "ng lint",
|
|
"test": "ng test"
|
|
},
|
|
"engines": {
|
|
"node": "^18.19.1 || ^20.11.1"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular/animations": "^20.3.19",
|
|
"@angular/cdk": "^20.2.14",
|
|
"@angular/common": "^20.3.19",
|
|
"@angular/compiler": "^20.3.19",
|
|
"@angular/core": "^20.3.19",
|
|
"@angular/forms": "^20.3.19",
|
|
"@angular/google-maps": "^20.2.14",
|
|
"@angular/localize": "^20.3.19",
|
|
"@angular/material": "^20.2.14",
|
|
"@angular/platform-browser": "^20.3.19",
|
|
"@angular/platform-browser-dynamic": "^20.3.19",
|
|
"@angular/router": "^20.3.19",
|
|
"bootstrap": "^5.3.7",
|
|
"chart.js": "^4.4.2",
|
|
"chartist": "^1.3.0",
|
|
"ng2-charts": "^6.0.1",
|
|
"ngx-skeleton-loader": "^9.0.0",
|
|
"rxjs": "~7.8.0",
|
|
"tslib": "^2.3.0",
|
|
"zone.js": "^0.15.1"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "^20.3.24",
|
|
"@angular-eslint/builder": "20.7.0",
|
|
"@angular-eslint/eslint-plugin": "20.7.0",
|
|
"@angular-eslint/eslint-plugin-template": "20.7.0",
|
|
"@angular-eslint/schematics": "20.7.0",
|
|
"@angular-eslint/template-parser": "20.7.0",
|
|
"@angular/cli": "^20.3.24",
|
|
"@angular/compiler-cli": "^20.3.19",
|
|
"@types/jasmine": "~5.1.0",
|
|
"@typescript-eslint/eslint-plugin": "7.2.0",
|
|
"@typescript-eslint/parser": "7.2.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"jasmine-core": "~5.1.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",
|
|
"lint-staged": "^16.4.0",
|
|
"prettier": "^3.8.3",
|
|
"typescript": "~5.9.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,html,scss,json,md}": [
|
|
"prettier --write"
|
|
],
|
|
"*.ts": [
|
|
"eslint --max-warnings=0"
|
|
],
|
|
"*.html": [
|
|
"eslint --max-warnings=0"
|
|
]
|
|
}
|
|
}
|