mirror of
https://github.com/google/nomulus
synced 2026-08-14 19:26:09 +00:00
- node to the most recent LTS version - angular dependencies to 22.x rather than 21.x - eslint to 10.7 (the old version was quite old) Deployed to alpha and everything looks good. The Typescript changes were all done by the migration (nothing manually). G.1 numbers 8 and 9
65 lines
2.2 KiB
JSON
65 lines
2.2 KiB
JSON
{
|
|
"name": "console-webapp",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve --proxy-config dev-proxy.config.json",
|
|
"build": "ng build --base-href=/console/ --configuration=$npm_config_configuration",
|
|
"build:local": "ng build --base-href=/default/console/",
|
|
"watch": "ng build --watch --configuration=development",
|
|
"test": "ng test --browsers=ChromeHeadless --watch=false",
|
|
"run:dev": "",
|
|
"prettify": "npx prettier --write ./src/",
|
|
"prettify:check": "npx prettier --check ./src/",
|
|
"start:dev": "concurrently \"./../gradlew :core:runTestServer\" \"ng serve --proxy-config dev-proxy.config.json\"",
|
|
"lint": "ng lint"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular/animations": "^22.0.6",
|
|
"@angular/cdk": "^22.0.4",
|
|
"@angular/common": "^22.0.6",
|
|
"@angular/compiler": "^22.0.6",
|
|
"@angular/core": "^22.0.6",
|
|
"@angular/forms": "^22.0.6",
|
|
"@angular/material": "^22.0.4",
|
|
"@angular/platform-browser": "^22.0.6",
|
|
"@angular/platform-browser-dynamic": "^22.0.6",
|
|
"@angular/router": "^22.0.6",
|
|
"rxjs": "~7.5.0",
|
|
"tslib": "^2.3.0",
|
|
"zone.js": "~0.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-eslint/builder": "22.1.0",
|
|
"@angular-eslint/eslint-plugin": "22.1.0",
|
|
"@angular-eslint/eslint-plugin-template": "22.1.0",
|
|
"@angular-eslint/schematics": "22.1.0",
|
|
"@angular-eslint/template-parser": "22.1.0",
|
|
"@angular/build": "^22.0.6",
|
|
"@angular/cli": "~22.0.6",
|
|
"@angular/compiler-cli": "^22.0.6",
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/jasmine": "~4.0.0",
|
|
"@types/node": "^24.13.3",
|
|
"@typescript-eslint/eslint-plugin": "^8.64.0",
|
|
"@typescript-eslint/parser": "^8.64.0",
|
|
"@typescript-eslint/utils": "^8.64.0",
|
|
"@vitest/browser-preview": "^4.1.10",
|
|
"angular-eslint": "^22.1.0",
|
|
"concurrently": "^7.6.0",
|
|
"eslint": "^10.7.0",
|
|
"istanbul-lib-instrument": "^6.0.3",
|
|
"jasmine-core": "~4.3.0",
|
|
"karma": "~6.4.0",
|
|
"karma-chrome-launcher": "~3.1.0",
|
|
"karma-coverage": "~2.2.0",
|
|
"karma-jasmine": "~5.1.0",
|
|
"karma-jasmine-html-reporter": "~2.0.0",
|
|
"prettier": "2.8.7",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.64.0",
|
|
"vitest": "^4.0.8"
|
|
}
|
|
}
|