-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.86 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
{
"name": "utils-ionic-v4",
"version": "0.0.1",
"author": "thcathy@gmail.com",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test-ci": "ng test --watch=false --browsers=ChromeHeadlessNoSandbox",
"lint": "ng lint",
"e2e": "ng e2e",
"wdio": "wdio run tests/config/wdio.conf.ts",
"ionic-e2e:run:web": "TS_NODE_PROJECT=tests/tsconfig.json wdio tests/config/wdio.conf.ts"
},
"private": true,
"dependencies": {
"@angular-devkit/architect": "^0.1402.9",
"@angular/animations": "^14.2.10",
"@angular/common": "^14.2.10",
"@angular/core": "^14.2.10",
"@angular/forms": "^14.2.10",
"@angular/platform-browser": "^14.2.10",
"@angular/platform-browser-dynamic": "^14.2.10",
"@angular/router": "^14.2.10",
"@angular/service-worker": "^14.2.10",
"@auth0/auth0-angular": "^1.11.0",
"@capacitor/app": "^4.0.0",
"@capacitor/browser": "^4.0.1",
"@capacitor/core": "^4.0.0",
"@capacitor/haptics": "^4.0.0",
"@capacitor/ios": "^4.0.0",
"@capacitor/keyboard": "^4.0.0",
"@capacitor/status-bar": "^4.0.0",
"@ionic-native/core": "^5.23.0",
"@ionic-native/safari-view-controller": "^5.27.0",
"@ionic-native/splash-screen": "^5.23.0",
"@ionic-native/status-bar": "^5.23.0",
"@ionic/angular": "^6.3.6",
"@ionic/storage": "^2.3.0",
"cordova-plugin-customurlscheme": "^4.3.0",
"cordova-plugin-safariviewcontroller": "^1.6.0",
"core-js": "^2.5.7",
"jwt-decode": "^2.2.0",
"ngx-logger": "^4.1.9",
"rxjs": "^7.5.7",
"tslib": "^2.0.0",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.9",
"@angular-devkit/core": "^14.2.9",
"@angular-devkit/schematics": "^14.2.9",
"@angular-eslint/builder": "14.0.0-alpha.4",
"@angular-eslint/eslint-plugin": "14.0.0-alpha.4",
"@angular-eslint/eslint-plugin-template": "14.0.0-alpha.4",
"@angular-eslint/schematics": "14.0.0-alpha.4",
"@angular-eslint/template-parser": "14.0.0-alpha.4",
"@angular/cli": "^14.2.9",
"@angular/compiler": "^14.2.10",
"@angular/compiler-cli": "^14.2.10",
"@angular/language-service": "^14.2.10",
"@badisi/wdio-harness": "^2.0.1",
"@capacitor/cli": "^4.0.0",
"@ionic/angular-toolkit": "^7.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"@wdio/appium-service": "^8.3.10",
"@wdio/cli": "^8.3.10",
"@wdio/jasmine-framework": "^8.3.10",
"@wdio/local-runner": "^8.3.10",
"@wdio/spec-reporter": "^8.3.0",
"appium": "^1.22.3",
"chromedriver": "^110.0.0",
"codelyzer": "^6.0.0",
"cordova-plugin-device": "^2.0.2",
"eslint": "^8.18.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.1",
"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",
"karma-junit-reporter": "^2.0.1",
"protractor": "~7.0.0",
"ts-node": "^10.4.0",
"tslint": "~6.1.0",
"typescript": "~4.6.4",
"wdio-chromedriver-service": "^8.1.1",
"wdio-wait-for": "^3.0.2"
},
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-safariviewcontroller": {},
"cordova-plugin-customurlscheme": {
"URL_SCHEME": "com.thc.utils",
"ANDROID_SCHEME": "com.thc.utils",
"ANDROID_HOST": "thcathy.auth0.com",
"ANDROID_PATHPREFIX": "/cordova/com.thc.utils/callback"
},
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {}
},
"platforms": [
"ios"
]
}
}