-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
75 lines (75 loc) · 2.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "management-portal",
"version": "2.1.2",
"description": "Description for ManagementPortal",
"private": true,
"cacheDirectories": [
"node_modules"
],
"dependencies": {
"@angular/animations": "^12.2.12",
"@angular/common": "^12.2.12",
"@angular/core": "^12.2.12",
"@angular/forms": "^12.2.12",
"@angular/localize": "^16.0.6",
"@angular/platform-browser": "^12.2.12",
"@angular/platform-browser-dynamic": "^12.2.12",
"@angular/router": "^12.2.12",
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"bootstrap": "^4.6.1",
"font-awesome": "4.7.0",
"jquery": "3.5.0",
"material-design-icons": "^3.0.1",
"ng-qrcode": "^5.2.0",
"ngx-cookie-service": "^12.0.3",
"ngx-webstorage": "^8.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^12.1.3",
"@angular-devkit/build-angular": "^12.2.12",
"@angular/cli": "^12.2.12",
"@angular/compiler": "^12.2.12",
"@angular/compiler-cli": "^12.2.12",
"@cypress/schematic": "1.5.0",
"@types/jasmine": "~3.8.0",
"@types/node": "^12.11.1",
"cypress": "8.3.0",
"jasmine-core": "~5.1.2",
"karma": "~6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"karma-notify-reporter": "^1.3.0",
"lodash.merge": "^4.6.2",
"merge-json-webpack-plugin": "^6.2.0",
"rimraf": "2.6.1",
"typescript": "~4.3.5",
"wait-port": "^0.2.9"
},
"engines": {
"node": ">=14.14.0"
},
"resolutions": {
"ansi-regex": "5.0.1"
},
"scripts": {
"lint": "ng lint",
"lint:fix": "ng lint --fix=true",
"cleanup": "rimraf build/",
"start": "ng serve",
"build:prod": "ng build --base-href /managementportal/ --configuration production",
"build:dev": "ng build --base-href /managementportal/ --configuration development",
"test": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"test:watch": "ng test --watch --browsers=Chrome",
"e2e": "yarn run wait-for-managementportal && ng e2e",
"e2e-prod": "yarn run wait-for-managementportal && ng e2e --configuration production",
"wait-for-managementportal": "wait-port -t 240000 http://localhost:8080/managementportal/management/health"
},
"packageManager": "yarn@3.6.4"
}