-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
92 lines (92 loc) · 3.53 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
{
"name": "kyma-console",
"version": "0.6.1",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "../node_modules/concurrently/bin/concurrently.js \"npm run buildConfig:watch\" \"ng serve --disable-host-check --host console-dev.kyma.local\"",
"start:kyma": ". ../scripts/load-cluster-config.sh && ../node_modules/concurrently/bin/concurrently.js \"npm run buildConfig:watch\" \"ng serve --disable-host-check --host console-dev.kyma.local\"",
"start:kyma:api": ". ../scripts/load-cluster-config.sh && ../node_modules/concurrently/bin/concurrently.js \"npm run buildConfig:watch\" \"ng serve --disable-host-check --host console-dev.kyma.local --configuration api-local\"",
"build": "npm run buildConfig && ng build --prod",
"test": "../node_modules/.bin/jest && npm run test-ng",
"test-ng": "if test \"${CI}\" = \"true\"; then npm run test-ng:single; else npm run test-ng:watch; fi",
"test-ng:watch": ". ../scripts/load-cluster-config.sh && ng test",
"test-ng:single": "ng test --watch=false",
"lint": "ng lint --tslint-config tslint.json",
"buildConfig": ". ../scripts/load-cluster-config.sh && webpack --mode production --config webpack-generateConfig.config",
"buildConfig:watch": ". ../scripts/load-cluster-config.sh && webpack -d --config webpack-generateConfig.config --watch"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.2.14",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"@luigi-project/core": "^1.4.0",
"@luigi-project/plugin-auth-oidc": "1.4.0",
"@types/async": "^2.0.49",
"angular-sortablejs": "^2.6.0",
"apollo-angular": "^1.5.0",
"apollo-angular-link-http": "^1.6.0",
"apollo-link": "^1.2.11",
"brace": "0.11.1",
"core-js": "^2.5.7",
"file-saver": "2.0.2",
"fundamental-ngx": "^0.8.0",
"jsoneditor": "^9.5.6",
"lodash": "^4.17.21",
"ng-click-outside": "^4.0.0",
"ngx-clipboard": "12.3.1",
"rxjs": "^6.6.3",
"sortablejs": "^1.7.0",
"time-ago-pipe": "^1.3.2",
"tree-kill": "^1.2.2",
"tslib": "^1.9.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "8.4.1",
"@angular-builders/dev-server": "7.1.1",
"@angular-devkit/build-angular": "~0.803.29",
"@angular-devkit/core": "8.3.29",
"@angular-devkit/schematics": "8.3.29",
"@angular/cli": "^8.3.29",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^8.2.14",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.2.3",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~6.0.60",
"ajv": "^6.5.3",
"babel-loader": "^8.0.4",
"codelyzer": "^5.0.1",
"jasmine-core": "~3.3.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.4",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "~1.4.0",
"protractor": "^5.4.0",
"puppeteer": "^1.14.0",
"ts-node": "~3.2.0",
"tslint-angular": "^1.1.2",
"tslint-jasmine-rules": "^1.6.0",
"typescript": "~3.5.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"singleQuote": true
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test))\\.js$"
}
}