-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.33 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
{
"name": "monitoring-dashboard",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:ce": "npm run build:ce:customerTile && npm run build:ce:weatherTile",
"build:ce:start": "npm run build:ce && ng s -o",
"start:ce:customerTile": "ng s --project customer-chart-tile -o",
"build:ce:customerTile": "npm run bundle:ce:customerTile && npm run copy:ce:customerTile",
"copy:ce:customerTile": "cpr dist/customer-chart-tile/main.js src/assets/customer-chart-tile.bundle.js -o",
"bundle:ce:customerTile": "ng build --project customer-chart-tile --prod --single-bundle --output-hashing none",
"start:ce:weatherTile": "ng s --project weather-tile -o",
"build:ce:weatherTile": "npm run bundle:ce:weatherTile && npm run copy:ce:weatherTile",
"copy:ce:weatherTile": "cpr dist/weather-tile/main.js src/assets/weather-tile.bundle.js -o",
"bundle:ce:weatherTile": "ng build --project weather-tile --prod --single-bundle --output-hashing none"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.2.11",
"@angular/cdk": "^11.2.10",
"@angular/common": "~11.2.11",
"@angular/compiler": "~11.2.11",
"@angular/core": "~11.2.11",
"@angular/elements": "^11.2.11",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/forms": "~11.2.11",
"@angular/material": "^11.2.10",
"@angular/platform-browser": "~11.2.11",
"@angular/platform-browser-dynamic": "~11.2.11",
"@angular/router": "~11.2.11",
"@swimlane/ngx-charts": "^16.0.0",
"document-register-element": "^1.7.2",
"rxjs": "~6.6.7",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.10",
"@angular/cli": "~11.2.10",
"@angular/compiler-cli": "~11.2.11",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"cpr": "^3.0.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ngx-build-plus": "^11.0.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.2"
}
}