-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.74 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
{
"name": "company-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test --browsers Chrome",
"test:coverage": "echo 'dummy coverage'",
"lint": "ng lint",
"e2e": "ng e2e",
"buildAppInLocal": "docker build -t company-ui:local --target=build --build-arg CONFIGURATION=serve --build-arg VERSION=local-$(git branch --show-current) .",
"buildApp": "docker build -t company-ui --build-arg VERSION=prod-build-$(git branch --show-current) .",
"startAppInLocal": "docker run -d --name company-ui-local -p 4200:4200 -v $(pwd):/usr/src/app company-ui:local",
"startAppInDev": "docker run --env-file ./ops/dev.env --name company-ui -d --rm -ti -p 3000:80 company-ui",
"buildAndStartAppInLocalMode": "npm run buildAppInLocal && npm run startAppInLocal",
"buildAndStartAppInDevMode": "npm run buildApp && npm run startAppInDev",
"generateApiClient": "rm -rf src/api-client && openapi-generator-cli generate -i 'http://localhost:8080/v1/api-docs' -g 'typescript-angular' --additional-properties='ngVersion=11.1.0' -o src/api-client && ./copyright.sh",
"test:pipeline": "docker build -f Dockerfile.test -t company-ui-for-pr ."
},
"private": true,
"dependencies": {
"@angular/animations": "~11.1.0",
"@angular/common": "~11.1.0",
"@angular/compiler": "~11.1.0",
"@angular/core": "~11.1.0",
"@angular/forms": "~11.1.0",
"@angular/platform-browser": "~11.1.0",
"@angular/platform-browser-dynamic": "~11.1.0",
"@angular/router": "~11.1.0",
"@carbon/icons-angular": "11.2.2",
"@carbon/layout": "10.17.0",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"angularx-qrcode": "11.0.0",
"carbon-components": "10.41.0",
"carbon-components-angular": "4.54.0",
"jwt-decode": "3.1.2",
"lodash": "4.17.21",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1101.2",
"@angular/cli": "^11.1.2",
"@angular/compiler-cli": "~11.1.0",
"@biesbjerg/ngx-translate-extract": "^7.0.4",
"@openapitools/openapi-generator-cli": "^2.1.26",
"@types/jasmine": "~3.6.0",
"@types/lodash": "4.14.172",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.2.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "5.4.0",
"tslint-microsoft-contrib": "4.0.1",
"tslint-sonarts": "1.9.0",
"typescript": "^4.1.3"
}
}