-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.78 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.78 KB
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": "remote-control-client",
"version": "0.0.1",
"author": "Ionic Framework",
"homepage": "https://ionicframework.com/",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^9.1.9",
"@angular/cdk": "^9.2.4",
"@angular/common": "^9.1.9",
"@angular/core": "^9.1.9",
"@angular/forms": "^9.1.9",
"@angular/material": "~9.2.1",
"@angular/platform-browser": "^9.1.9",
"@angular/platform-browser-dynamic": "^9.1.9",
"@angular/router": "^9.1.9",
"@ionic-native/barcode-scanner": "^5.26.0",
"@ionic-native/core": "^5.26.0",
"@ionic-native/device": "^5.26.0",
"@ionic-native/http": "^5.26.0",
"@ionic-native/native-storage": "^5.26.0",
"@ionic-native/network": "^5.26.0",
"@ionic-native/open-native-settings": "^5.26.0",
"@ionic-native/speech-recognition": "^5.26.0",
"@ionic-native/splash-screen": "^5.26.0",
"@ionic-native/status-bar": "^5.26.0",
"@ionic-native/unique-device-id": "^5.26.0",
"@ionic/angular": "^5.1.1",
"cordova-android": "^8.1.0",
"cordova-open-native-settings": "^1.5.2",
"cordova-plugin-advanced-http": "^2.5.1",
"cordova-plugin-exitapp2": "^1.0.4",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-nativestorage": "^2.3.2",
"cordova-plugin-network-information": "^2.0.2",
"cordova-plugin-speechrecognition": "^1.2.0",
"cordova-plugin-uniquedeviceid": "^1.3.2",
"cordova-plugin-websocket": "^0.12.2",
"core-js": "^3.6.5",
"phonegap-plugin-barcodescanner": "^8.1.0",
"rxjs": "^6.5.5",
"simple-peer": "^9.7.2",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/architect": "^0.901.7",
"@angular-devkit/build-angular": "^0.901.7",
"@angular-devkit/core": "^9.1.7",
"@angular-devkit/schematics": "^9.1.7",
"@angular/cli": "9.1.7",
"@angular/compiler": "^9.1.9",
"@angular/compiler-cli": "^9.1.9",
"@angular/language-service": "^9.1.9",
"@ionic/angular-toolkit": "^2.2.0",
"@types/jasmine": "^3.5.10",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^14.0.12",
"@types/simple-peer": "^9.6.0",
"codelyzer": "^5.2.2",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "^5.0.0",
"cordova-plugin-splashscreen": "^5.0.4",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-whitelist": "^1.3.4",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.2",
"karma": "~5.0.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~3.3.1",
"karma-jasmine-html-reporter": "^1.5.4",
"protractor": "^7.0.0",
"ts-node": "~8.10.2",
"tslint": "~6.1.2",
"typescript": "~3.8.3"
},
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-uniquedeviceid": {},
"cordova-plugin-advanced-http": {
"OKHTTP_VERSION": "3.10.0"
},
"cordova-plugin-nativestorage": {},
"cordova-plugin-websocket": {},
"phonegap-plugin-barcodescanner": {
"ANDROID_SUPPORT_V4_VERSION": "27.+"
},
"cordova-plugin-network-information": {},
"kr.co.joycorp.cordova.exitapp": {},
"cordova-plugin-speechrecognition": {},
"cordova-open-native-settings": {}
},
"platforms": [
"android"
]
}
}