2020-05-13 12:41:43 +00:00
|
|
|
{
|
|
|
|
"name": "console",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"scripts": {
|
|
|
|
"ng": "ng",
|
|
|
|
"start": "ng serve",
|
|
|
|
"build": "ng build",
|
2020-07-08 12:55:33 +00:00
|
|
|
"prodbuild": "ng build --prod",
|
2020-07-30 14:54:15 +00:00
|
|
|
"lint": "ng lint && stylelint './src/**/*.scss' --syntax scss",
|
2020-07-07 13:21:18 +00:00
|
|
|
"postinstall": "../build/console/generate-grpc.sh"
|
2020-05-13 12:41:43 +00:00
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2020-07-03 11:20:05 +00:00
|
|
|
"@angular/animations": "~10.0.2",
|
|
|
|
"@angular/cdk": "~10.0.1",
|
|
|
|
"@angular/common": "~10.0.2",
|
|
|
|
"@angular/compiler": "~10.0.2",
|
|
|
|
"@angular/core": "~10.0.2",
|
|
|
|
"@angular/forms": "~10.0.2",
|
|
|
|
"@angular/material": "^10.0.1",
|
|
|
|
"@angular/platform-browser": "~10.0.2",
|
|
|
|
"@angular/platform-browser-dynamic": "~10.0.2",
|
|
|
|
"@angular/router": "~10.0.2",
|
|
|
|
"@angular/service-worker": "~10.0.2",
|
|
|
|
"@ngx-translate/core": "^13.0.0",
|
|
|
|
"@ngx-translate/http-loader": "^6.0.0",
|
2020-08-12 06:47:53 +00:00
|
|
|
"@types/file-saver": "^2.0.1",
|
2020-08-20 20:17:06 +00:00
|
|
|
"@types/uuid": "^8.3.0",
|
|
|
|
"@types/google-protobuf": "^3.7.3",
|
2020-07-27 07:34:41 +00:00
|
|
|
"angularx-qrcode": "^10.0.6",
|
|
|
|
"angular-oauth2-oidc": "^10.0.3",
|
2020-05-13 12:41:43 +00:00
|
|
|
"cors": "^2.8.5",
|
2020-08-12 06:47:53 +00:00
|
|
|
"file-saver": "^2.0.2",
|
2020-07-27 07:34:41 +00:00
|
|
|
"google-proto-files": "^2.2.0",
|
2020-08-20 20:17:06 +00:00
|
|
|
"google-protobuf": "^3.13.0",
|
2020-06-10 10:59:12 +00:00
|
|
|
"grpc": "^1.24.3",
|
2020-07-03 11:20:05 +00:00
|
|
|
"grpc-web": "^1.2.0",
|
2020-06-23 16:56:29 +00:00
|
|
|
"moment": "^2.27.0",
|
2020-07-03 11:20:05 +00:00
|
|
|
"ngx-moment": "^5.0.0",
|
fix(console): cleanup structure, role guard, paginated requests, cleanup policies, toast i18n, view timestamp, preloading strategy, maennchenfindings, fix passwordchange (#483)
* routes, move grid to list comopnent
* rename app list component, move to project sub
* add owned-project-detail child module
* seperate pipes
* set password validators only if needed
* create org initialize without pwd
* no caps
* self xss message
* fix user table
* fix project member paginator
* fix project members pagination, user grant pag
* move project grants, fix imports
* fix owned project detail imports
* use pipe and directives
* ng content bindings, rem custom schemas
* i18n, fix error toast parameter
* toast i18n
* side background
* fix: sequence, add timestamp
* audit
* fix metanav background
* org domain label
* cleanup policy component
* shorten user grant roles, mk cols visible as bind
* move user components, show otp only if available
* preload modules
* fix password change
* fix org create buttons
* class css
2020-07-16 13:13:36 +00:00
|
|
|
"ngx-quicklink": "^0.2.3",
|
2020-05-13 12:41:43 +00:00
|
|
|
"prettier-stylelint": "^0.4.2",
|
2020-08-05 13:39:34 +00:00
|
|
|
"rxjs": "~6.6.2",
|
2020-05-13 12:41:43 +00:00
|
|
|
"ts-protoc-gen": "^0.12.0",
|
2020-08-11 07:36:25 +00:00
|
|
|
"tslib": "^2.0.1",
|
2020-08-05 13:39:34 +00:00
|
|
|
"uuid": "^8.3.0",
|
2020-05-27 14:42:25 +00:00
|
|
|
"zone.js": "~0.10.3"
|
2020-05-13 12:41:43 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-08-20 20:17:06 +00:00
|
|
|
"@angular-devkit/build-angular": "~0.1000.6",
|
|
|
|
"@angular/cli": "~10.0.6",
|
2020-07-03 11:20:05 +00:00
|
|
|
"@angular/compiler-cli": "~10.0.2",
|
2020-08-05 13:39:34 +00:00
|
|
|
"@types/jasmine": "~3.5.12",
|
2020-08-20 20:17:06 +00:00
|
|
|
"@angular/language-service": "~10.0.9",
|
2020-05-13 12:41:43 +00:00
|
|
|
"@types/jasminewd2": "~2.0.3",
|
2020-08-05 13:39:34 +00:00
|
|
|
"@types/node": "^14.0.27",
|
2020-07-03 11:20:05 +00:00
|
|
|
"codelyzer": "^6.0.0",
|
2020-07-27 07:34:41 +00:00
|
|
|
"jasmine-core": "~3.6.0",
|
2020-06-25 10:52:57 +00:00
|
|
|
"jasmine-spec-reporter": "~5.0.0",
|
2020-08-05 13:39:34 +00:00
|
|
|
"karma": "~5.1.1",
|
2020-05-13 12:41:43 +00:00
|
|
|
"karma-chrome-launcher": "~3.1.0",
|
2020-06-25 10:52:57 +00:00
|
|
|
"karma-coverage-istanbul-reporter": "~3.0.2",
|
2020-08-20 20:17:06 +00:00
|
|
|
"karma-jasmine": "~4.0.1",
|
2020-06-25 10:52:57 +00:00
|
|
|
"karma-jasmine-html-reporter": "^1.5.0",
|
2020-05-27 14:37:50 +00:00
|
|
|
"prettier": "^2.0.5",
|
2020-06-25 10:52:57 +00:00
|
|
|
"protractor": "~7.0.0",
|
2020-07-30 14:54:15 +00:00
|
|
|
"stylelint": "^13.6.1",
|
|
|
|
"stylelint-config-standard": "^20.0.0",
|
|
|
|
"stylelint-scss": "^3.18.0",
|
2020-06-08 13:19:02 +00:00
|
|
|
"ts-node": "~8.10.2",
|
2020-08-05 13:39:34 +00:00
|
|
|
"tslint": "~6.1.3",
|
2020-07-27 07:34:41 +00:00
|
|
|
"typescript": "^3.9.7"
|
2020-05-13 12:41:43 +00:00
|
|
|
}
|
|
|
|
}
|