-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 3.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "climsoft-app",
"version": "1.0.0",
"config": {
"coreui_library_short_version": "4.0",
"coreui_library_docs_url": "https://coreui.io/angular/docs/"
},
"scripts": {
"preconfig": "shx mkdir dist/config",
"config:dev": "npm run preconfig && shx cp src/config/app-config.json dist/config/app-config.json",
"config:climsoft": "npm run preconfig && shx cp src/config/app-config.climsoft.json dist/config/app-config.json",
"config:opencdms": "npm run preconfig && shx cp src/config/app-config.opencdms.json dist/config/app-config.json",
"cy:open": "cypress open",
"cy:run": "cypress run",
"mocha-merge": "npx mochawesome-merge ./cypress/report/*.json -o output.json",
"e2e": "npm run cypress",
"ng": "ng",
"build": "ng build",
"prebuild": "shx rm -rf dist && echo 'prebuild cleanup done'",
"build:climsoft": "ng build --configuration climsoft && npm run config:climsoft",
"build:opencdms": "ng build --configuration opencdms && npm run config:opencdms",
"start": "ng serve --proxy-config proxy.conf.json",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.0.0",
"@angular/cdk": "~13.0.0",
"@angular/cli": "^13.3.8",
"@angular/common": "~13.0.0",
"@angular/compiler": "~13.0.0",
"@angular/core": "~13.0.0",
"@angular/forms": "~13.0.0",
"@angular/language-service": "~13.0.0",
"@angular/platform-browser": "~13.0.0",
"@angular/platform-browser-dynamic": "~13.0.0",
"@angular/router": "~13.0.0",
"@auth0/angular-jwt": "^5.0.2",
"@coreui/angular": "^4.0.0-alpha.3",
"@coreui/angular-chartjs": "^2.0.0-alpha.6",
"@coreui/chartjs": "^3.0.0",
"@coreui/coreui": "~4.0.5",
"@coreui/icons": "^2.1.0",
"@coreui/icons-angular": "^3.0.0-alpha.4",
"@coreui/utils": "^1.3.1",
"@fortawesome/angular-fontawesome": "^0.10.1",
"@ngx-loading-bar/core": "^6.0.1",
"@ngx-loading-bar/http-client": "^6.0.1",
"@ngx-loading-bar/router": "^6.0.1",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"angular-user-idle": "^3.0.0",
"chart.js": "^3.6.1",
"moment": "^2.29.1",
"ngx-bootstrap": "^8.0.0",
"ngx-cookie-service": "^13.1.2",
"ngx-dropzone": "^3.1.0",
"ngx-mask": "^13.1.1",
"ngx-perfect-scrollbar": "^10.1.1",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.0.4",
"@angular/compiler-cli": "~13.0.0",
"@angular/localize": "~13.0.0",
"@schematics/angular": "^13.2.0",
"@types/cypress-cucumber-preprocessor": "^4.0.1",
"@types/jasmine": "~3.10.0",
"@types/node": "^16.11.11",
"cypress": "^10.1.0",
"cypress-cucumber-preprocessor": "^4.3.1",
"cypress-localstorage-commands": "^2.2.0",
"cypress-mochawesome-reporter": "^3.2.0",
"cypress-wait-until": "^1.7.2",
"cypress-xpath": "^1.6.2",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"shx": "^0.3.4",
"typescript": "~4.4.3",
"wait-on": "^6.0.1"
},
"engines": {
"node": "^12.20.0 || ^14.15.0 || >=16.10.0",
"npm": ">= 6"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"step_definitions": "cypress/integration"
}
}