blob: 67039117e7c81d9cedd038a25708e853f5f2b992 [file] [log] [blame]
elinuxhenrikf507d922020-03-19 14:52:24 +01001{
elinuxhenrik23c9d462020-03-30 16:21:19 +02002 "name": "controlpanel-app",
elinuxhenrikf507d922020-03-19 14:52:24 +01003 "version": "0.0.0",
4 "scripts": {
5 "ng": "ng",
6 "start": "ng serve --proxy-config proxy.conf.json",
Lathishb339e7a2020-12-08 21:55:51 +00007 "start:mock": "ng serve --configuration=mock",
elinuxhenrik75f920d2021-06-04 15:45:41 +02008 "build": "ng build --output-hashing all",
9 "build:prod": "ng build --configuration production --build-optimizer --vendor-chunk",
Lathish095fb8c2021-01-28 17:14:19 +000010 "test": "ng test --watch=true",
elinuxhenrikf507d922020-03-19 14:52:24 +010011 "lint": "ng lint",
elinuxhenrik45d525d2021-04-21 16:07:31 +020012 "e2e": "ng e2e",
13 "webdriver-update": "webdriver-manager update"
elinuxhenrikf507d922020-03-19 14:52:24 +010014 },
15 "private": true,
16 "dependencies": {
elinuxhenrikad70d412021-02-15 14:38:02 +010017 "@angular/animations": "^9.1.13",
18 "@angular/cdk": "^9.2.3",
19 "@angular/common": "^9.1.13",
20 "@angular/flex-layout": "^9.0.0-beta.31",
21 "@angular/forms": "^9.1.13",
22 "@angular/platform-browser": "^9.1.13",
23 "@angular/platform-browser-dynamic": "^9.1.13",
24 "@angular/router": "^9.1.13",
25 "@fortawesome/fontawesome-free": "^5.15.2",
maximessonf7c54882020-11-09 10:25:45 +010026 "@kubernetes/client-node": "^0.12.3",
elinuxhenrikf507d922020-03-19 14:52:24 +010027 "@types/chart.js": "^2.9.11",
elinuxhenrikb7a1bd72020-05-19 09:37:02 +020028 "@types/uuid": "^7.0.3",
elinuxhenrikad70d412021-02-15 14:38:02 +010029 "angular-bootstrap-md": "^9.2.0",
elinuxhenrikb7a1bd72020-05-19 09:37:02 +020030 "angular6-json-schema-form": "^8.0.0",
elinuxhenrikf507d922020-03-19 14:52:24 +010031 "bootstrap": "^4.4.1",
32 "chart.js": "^2.9.3",
elinuxhenrikf507d922020-03-19 14:52:24 +010033 "hammerjs": "^2.0.8",
elinuxhenrik8068db82021-02-23 15:30:40 +010034 "jquery": "^3.5.1",
elinuxhenrikf507d922020-03-19 14:52:24 +010035 "lodash-es": "^4.17.15",
elinuxhenrikad70d412021-02-15 14:38:02 +010036 "ng2-charts": "^2.4.2",
elinuxhenrikf507d922020-03-19 14:52:24 +010037 "ng2-completer": "^2.0.8",
elinuxhenrik8068db82021-02-23 15:30:40 +010038 "ngx-cookie-service": "^3.1.3",
elinuxhenrikad70d412021-02-15 14:38:02 +010039 "ngx-toastr": "^11.0.0",
elinuxhenrik190ba302021-03-15 13:42:51 +010040 "popper.js": "^1.16.1",
elinuxhenrikf507d922020-03-19 14:52:24 +010041 "rxjs": "6.5.3",
42 "rxjs-compat": "6.3.3",
43 "tslib": "^1.10.0",
elinuxhenrikad70d412021-02-15 14:38:02 +010044 "zone.js": "~0.10.2"
elinuxhenrikf507d922020-03-19 14:52:24 +010045 },
46 "devDependencies": {
elinuxhenrikad70d412021-02-15 14:38:02 +010047 "@angular-devkit/build-angular": "~0.901.14",
48 "@angular/cli": "^9.1.13",
49 "@angular/compiler": "^9.1.13",
50 "@angular/compiler-cli": "^9.1.13",
51 "@angular/core": "^9.1.13",
52 "@angular/language-service": "^9.1.13",
53 "@angular/material": "^9.2.4",
elinuxhenrikf507d922020-03-19 14:52:24 +010054 "@types/jasmine": "^2.8.16",
55 "@types/jasminewd2": "^2.0.8",
elinuxhenrikad70d412021-02-15 14:38:02 +010056 "@types/node": "^12.11.1",
57 "codelyzer": "^5.1.2",
elinuxhenrikf507d922020-03-19 14:52:24 +010058 "jasmine-core": "~2.99.1",
59 "jasmine-spec-reporter": "~4.2.1",
ecaiyanlinuxac52ed82021-02-23 13:48:13 +010060 "karma": "^6.1.1",
elinuxhenrik8068db82021-02-23 15:30:40 +010061 "karma-chrome-launcher": "^3.1.0",
elinuxhenrikf507d922020-03-19 14:52:24 +010062 "karma-coverage-istanbul-reporter": "^2.1.1",
63 "karma-jasmine": "~1.1.2",
64 "karma-jasmine-html-reporter": "^0.2.2",
elinuxhenrik3fe1dac2021-03-25 12:55:31 +010065 "ng-mocks": "^11.9.1",
elinuxhenrik8068db82021-02-23 15:30:40 +010066 "protractor": "^7.0.0",
elinuxhenrikf507d922020-03-19 14:52:24 +010067 "ts-node": "~7.0.0",
elinuxhenrik3fe1dac2021-03-25 12:55:31 +010068 "tslint": "^6.1.3",
elinuxhenrikad70d412021-02-15 14:38:02 +010069 "typescript": "~3.8.3"
elinuxhenrikf507d922020-03-19 14:52:24 +010070 },
71 "comments": {
72 "dependencies": {
73 "rxjs": "Its version needs to be same with rxjs-compat, otherwise apparently build is failing"
74 }
75 }
76}