2021-10-28 11:21:39 +02:00
|
|
|
```text
|
|
|
|
{
|
|
|
|
"name": "harbor",
|
|
|
|
"version": "2.5.0",
|
|
|
|
"description": "Harbor UI with Clarity",
|
|
|
|
"angular-cli": {},
|
|
|
|
"scripts": {
|
|
|
|
|
|
|
|
// triggered after running "npm install"
|
|
|
|
"postinstall": "node scripts/convert-yaml-to-json.js && ng-swagger-gen -i ng-swagger-gen/swagger.json -o ng-swagger-gen && node scripts/delete-swagger-json.js",
|
|
|
|
|
|
|
|
// For developing
|
|
|
|
"start": "node --max_old_space_size=2048 ./node_modules/@angular/cli/bin/ng serve --ssl true --host 0.0.0.0 --proxy-config proxy.config.json",
|
|
|
|
"start:prod": "node --max_old_space_size=2048 ./node_modules/@angular/cli/bin/ng serve --ssl true --host 0.0.0.0 --proxy-config proxy.config.json --configuration production",
|
|
|
|
|
|
|
|
// For code grammar checking
|
|
|
|
"lint": "tslint \"src/**/*.ts\"",
|
|
|
|
"lint_fix": "tslint --fix \"src/**/*.ts\"",
|
|
|
|
|
|
|
|
// For unit test
|
|
|
|
"test": "node --max_old_space_size=2048 ./node_modules/@angular/cli/bin/ng test --code-coverage",
|
|
|
|
"test:watch": "ng test --code-coverage --watch",
|
|
|
|
"test:debug": "ng test --code-coverage --source-map false",
|
|
|
|
"test:chrome": "ng test --code-coverage --browsers Chrome",
|
|
|
|
"test:headless": "ng test --watch=false --no-progress --code-coverage --browsers=ChromeNoSandboxHeadless",
|
|
|
|
"test:chrome-debug": "ng test --code-coverage --browsers Chrome --watch",
|
|
|
|
|
|
|
|
// E2e related. Currently not used
|
|
|
|
"pree2e": "webdriver-manager update",
|
|
|
|
"e2e": "protractor",
|
|
|
|
|
|
|
|
"build": "ng build --aot",
|
|
|
|
"release": "ng build --configuration production",
|
|
|
|
|
|
|
|
"build-mock-api-server": "tsc -p server",
|
|
|
|
|
|
|
|
// to run a mocked node express api server
|
|
|
|
"mock-api-server": "npm run build-mock-api-server && node server/dist/server/src/mock-api.js",
|
|
|
|
|
|
|
|
|
|
|
|
// Run this command before the production building. It will set the current timestamp to "buildTimestamp" property in "environment.prod.ts" file
|
|
|
|
// And "buildTimestamp" will be used as a query parameter to avoid browser cache after upgrading Harbor UI
|
|
|
|
"generate-build-timestamp": "node scripts/generate-build-timestamp.js"
|
|
|
|
|
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
|
|
|
// Angular framework. Required
|
2022-01-17 07:20:20 +01:00
|
|
|
"@angular/animations": "~13.1.1",
|
|
|
|
"@angular/common": "~13.1.1",
|
|
|
|
"@angular/compiler": "~13.1.1",
|
|
|
|
"@angular/core": "~13.1.1",
|
|
|
|
"@angular/forms": "~13.1.1",
|
|
|
|
"@angular/localize": "~13.1.1",
|
|
|
|
"@angular/platform-browser": "~13.1.1",
|
|
|
|
"@angular/platform-browser-dynamic": "~13.1.1",
|
|
|
|
"@angular/router": "~13.1.1",
|
|
|
|
"rxjs": "^7.4.0",
|
2021-10-28 11:21:39 +02:00
|
|
|
"tslib": "^2.2.0",
|
|
|
|
"zone.js": "~0.11.4",
|
|
|
|
|
|
|
|
// Clarity UI. Required
|
2022-01-17 07:20:20 +01:00
|
|
|
"@cds/core": "next",
|
|
|
|
"@clr/angular": "next",
|
|
|
|
"@clr/icons": "next",
|
|
|
|
"@clr/ui": "next",
|
2021-10-28 11:21:39 +02:00
|
|
|
|
|
|
|
// For Harbor i18n functionality. Required
|
|
|
|
"@ngx-translate/core": "^13.0.0",
|
|
|
|
"@ngx-translate/http-loader": "^6.0.0",
|
|
|
|
|
|
|
|
// For cron string checking. Required
|
|
|
|
"cron-validator": "^1.2.1",
|
|
|
|
|
|
|
|
// Used by CopyInputComponent to copy pull command to clipboard. Required
|
|
|
|
"ngx-clipboard": "^12.3.1",
|
|
|
|
|
|
|
|
// For Harbor cookie service. Required
|
|
|
|
"ngx-cookie": "^5.0.2",
|
|
|
|
|
|
|
|
// To render markdown data. Required
|
2022-01-17 07:20:20 +01:00
|
|
|
"ngx-markdown": "~13.0.0",
|
2021-10-28 11:21:39 +02:00
|
|
|
|
|
|
|
// For swagger API center. Required
|
2022-01-17 07:20:20 +01:00
|
|
|
"swagger-ui": "^4.1.3",
|
2021-10-28 11:21:39 +02:00
|
|
|
"buffer": "^6.0.3",
|
|
|
|
|
|
|
|
// To convert yaml to json. Required
|
|
|
|
"js-yaml": "^4.1.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
// Angular framework. Required
|
2022-01-17 07:20:20 +01:00
|
|
|
"@angular-devkit/build-angular": "~13.2.0-next.2",
|
|
|
|
"@angular/cli": "~13.1.1",
|
|
|
|
"@angular/compiler-cli": "~13.1.1",
|
2021-10-28 11:21:39 +02:00
|
|
|
"@types/jasmine": "~3.10.1",
|
|
|
|
"@types/node": "^16.11.6",
|
2022-01-17 07:20:20 +01:00
|
|
|
"typescript": "~4.5.4",
|
2021-10-28 11:21:39 +02:00
|
|
|
|
|
|
|
// For unit test. Required
|
2022-01-17 07:20:20 +01:00
|
|
|
"jasmine-core": "^4.0.0",
|
2021-10-28 11:21:39 +02:00
|
|
|
"jasmine-spec-reporter": "~7.0.0",
|
|
|
|
"karma": "^6.3.3",
|
|
|
|
"karma-chrome-launcher": "~3.1.0",
|
2022-01-17 07:20:20 +01:00
|
|
|
"karma-coverage": "^2.1.0",
|
|
|
|
"karma-jasmine": "~4.0.1",
|
|
|
|
"karma-jasmine-html-reporter": "^1.7.0",
|
2021-10-28 11:21:39 +02:00
|
|
|
|
|
|
|
// To run a local mocked API server. Required
|
|
|
|
"@types/express": "^4.17.12",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
|
|
|
|
// To generate models and Angular services based on swagger.yaml. Required
|
2021-10-29 12:44:20 +02:00
|
|
|
// do not upgrade it
|
|
|
|
"ng-swagger-gen": "^1.8.1",
|
2021-10-28 11:21:39 +02:00
|
|
|
|
|
|
|
// For e2e test. Required
|
|
|
|
"protractor": "^7.0.0",
|
|
|
|
|
|
|
|
// For code grammar checking. Optional
|
|
|
|
"eslint": "8.1.0",
|
|
|
|
|
|
|
|
// For code checking. Optional
|
|
|
|
"codelyzer": "^6.0.2",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|