forked from SchweizerischeBundesbahnen/scion-workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (120 loc) · 7.35 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "scion",
"version": "0.0.0-beta.17",
"description": "SCION Workbench helps to build multi-view web applications and integrates separate micro frontends into a consistent rich web application.",
"license": "EPL-2.0",
"homepage": "https://github.com/SchweizerischeBundesbahnen/scion-workbench",
"bugs": {
"url": "https://github.com/SchweizerischeBundesbahnen/scion-workbench/issues"
},
"author": {
"name": "SCION Workbench contributors",
"url": "https://github.com/SchweizerischeBundesbahnen/scion-workbench"
},
"scripts": {
"build": "run-s build:*",
"build:mouse-dispatcher": "ng build --prod @scion/mouse-dispatcher",
"build:dimension": "ng build --prod @scion/dimension",
"build:viewport": "ng build --prod @scion/viewport && cp -r projects/scion/viewport/src/theme/** dist/scion/viewport",
"build:workbench": "ng build --prod @scion/workbench && cp -r projects/scion/workbench/src/theme/** dist/scion/workbench",
"build:workbench-application-platform.api": "ng build --prod @scion/workbench-application-platform.api",
"build:workbench-application-platform": "ng build --prod @scion/workbench-application-platform",
"build:workbench-application.core": "ng build --prod @scion/workbench-application.core",
"build:workbench-application.angular": "ng build --prod @scion/workbench-application.angular",
"test": "run-s test:*",
"test:workbench": "ng test @scion/workbench --watch=false",
"test:workbench-application-platform": "ng test @scion/workbench-application-platform --watch=false",
"test:workbench-application.core": "ng test @scion/workbench-application.core --watch=false",
"test:workbench-application.angular": "ng test @scion/workbench-application.angular --watch=false",
"test:viewport": "ng test @scion/viewport --watch=false",
"lint": "run-p lint:*",
"lint:workbench": "ng lint @scion/workbench",
"lint:workbench-application-platform.api": "ng lint @scion/workbench-application-platform.api",
"lint:workbench-application-platform": "ng lint @scion/workbench-application-platform",
"lint:workbench-application.core": "ng lint @scion/workbench-application.core",
"lint:workbench-application.angular": "ng lint @scion/workbench-application.angular",
"lint:mouse-dispatcher": "ng lint @scion/mouse-dispatcher",
"lint:dimension": "ng lint @scion/dimension",
"lint:viewport": "ng lint @scion/viewport",
"app:workbench-application-platform:e2e": "run-p -r app:workbench-application-platform:serve app:workbench-application-platform:await-then-e2e",
"app:workbench-application-platform:await-then-e2e": "run-s app:workbench-application-platform:await app:workbench-application-platform:e2e:specs",
"app:workbench-application-platform:build-now": "run-s app:workbench-application-platform:build-now:*",
"app:workbench-application-platform:lint": "run-p app:workbench-application-platform:lint:*",
"app:workbench-application-platform:serve": "run-p -r app:workbench-application-platform:serve:*",
"app:workbench-application-platform:await": "run-s app:workbench-application-platform:await:*",
"app:workbench-application-platform:lint:specs": "ng lint e2e/workbench-application-platform",
"app:workbench-application-platform:e2e:specs": "ng e2e e2e/workbench-application-platform --baseUrl http://localhost:5000",
"app:workbench-application-platform:build-now:common": "ng build --configuration=now app/workbench-application-platform/common",
"app:workbench-application-platform:lint:common": "ng lint app/workbench-application-platform/common",
"app:workbench-application-platform:build-now:host-app": "ng build --configuration=now app/workbench-application-platform/host-app",
"app:workbench-application-platform:lint:host-app": "ng lint app/workbench-application-platform/host-app",
"app:workbench-application-platform:serve:host-app": "ng serve app/workbench-application-platform/host-app --aot --port 5000",
"app:workbench-application-platform:await:host-app": "wait-on http-get://localhost:5000",
"app:workbench-application-platform:build-now:contact-app": "ng build --configuration=now app/workbench-application-platform/contact-app",
"app:workbench-application-platform:lint:contact-app": "ng lint app/workbench-application-platform/contact-app",
"app:workbench-application-platform:serve:contact-app": "ng serve app/workbench-application-platform/contact-app --aot --port 5001",
"app:workbench-application-platform:await:contact-app": "wait-on http-get://localhost:5001",
"app:workbench-application-platform:build-now:communication-app": "ng build --configuration=now app/workbench-application-platform/communication-app",
"app:workbench-application-platform:lint:communication-app": "ng lint app/workbench-application-platform/communication-app",
"app:workbench-application-platform:serve:communication-app": "ng serve app/workbench-application-platform/communication-app --aot --port 5002",
"app:workbench-application-platform:await:communication-app": "wait-on http-get://localhost:5002",
"app:workbench-application-platform:build-now:dev-tools-app": "ng build --configuration=now app/workbench-application-platform/dev-tools-app",
"app:workbench-application-platform:lint:dev-tools-app": "ng lint app/workbench-application-platform/dev-tools-app",
"app:workbench-application-platform:serve:dev-tools-app": "ng serve app/workbench-application-platform/dev-tools-app --aot --port 5003",
"app:workbench-application-platform:await:dev-tools-app": "wait-on http-get://localhost:5003",
"app:workbench-application-platform:lint:testing-app": "ng lint app/workbench-application-platform/testing-app",
"app:workbench-application-platform:serve:testing-app": "ng serve app/workbench-application-platform/testing-app --aot --port 5004",
"app:workbench-application-platform:await:testing-app": "wait-on http-get://localhost:5004"
},
"private": true,
"dependencies": {
"@angular/animations": "7.2.2",
"@angular/cdk": "7.2.2",
"@angular/common": "7.2.2",
"@angular/compiler": "7.2.2",
"@angular/core": "7.2.2",
"@angular/forms": "7.2.2",
"@angular/platform-browser": "7.2.2",
"@angular/platform-browser-dynamic": "7.2.2",
"@angular/router": "7.2.2",
"core-js": "2.6.3",
"js-sha256": "0.9.0",
"rxjs": "6.3.3",
"web-animations-js": "2.3.1",
"zone.js": "0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.12.0",
"@angular-devkit/build-ng-packagr": "~0.12.0",
"@angular/cli": "7.2.3",
"@angular/compiler-cli": "7.2.2",
"@angular/language-service": "7.2.2",
"@types/jasmine": "3.3.8",
"@types/jasminewd2": "2.0.6",
"@types/node": "10.12.18",
"codelyzer": "4.5.0",
"jasmine-core": "3.3.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.4",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.0",
"ng-packagr": "4.7.0",
"now": "13.1.2",
"npm-run-all": "4.1.5",
"protractor": "5.4.2",
"puppeteer": "1.11.0",
"rxjs-tslint": "0.1.6",
"ts-node": "8.0.2",
"tsickle": "0.34.0",
"tslib": "^1.9.0",
"tslint": "5.12.1",
"typescript": "3.2.4",
"wait-on": "3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SchweizerischeBundesbahnen/scion-workbench.git"
}
}