-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·71 lines (71 loc) · 2.29 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
{
"private": true,
"name": "angular-uix-cordova",
"version": "1.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 3000 -o",
"build": "ng build --prod",
"lint": "ng lint",
"build:android-release": "cordova build android --prod --release",
"build:ios-release": "cordova build ios --prod --release",
"launch:android": "cordova run android --device --prod --release",
"launch:ios": "cordova run ios --device --prod --release"
},
"dependencies": {
"@angular/animations": "~10.1.1",
"@angular/common": "~10.1.1",
"@angular/compiler": "~10.1.1",
"@angular/core": "~10.1.1",
"@angular/forms": "~10.1.1",
"@angular/platform-browser": "~10.1.1",
"@angular/platform-browser-dynamic": "~10.1.1",
"@angular/router": "~10.1.1",
"@ionic-native/core": "^5.28.0",
"@ionic-native/device": "^5.28.0",
"@ionic-native/network": "^5.28.0",
"@ionic-native/screen-orientation": "^5.28.0",
"@ionic-native/splash-screen": "^5.28.0",
"@ionic-native/status-bar": "^5.28.0",
"@ionic/angular": "^5.3.2",
"cordova-android": "^8.0.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-ionic-keyboard": "^2.1.3",
"cordova-plugin-ionic-webview": "^4.1.1",
"cordova-plugin-screen-orientation": "^3.0.2",
"cordova-plugin-splashscreen": "^5.0.3",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-whitelist": "^1.3.4",
"es6-promise-plugin": "^4.2.2",
"rxjs": "~6.6.3",
"sweetalert2": "^9.14.3",
"tslib": "^2.0.1",
"zone.js": "~0.11.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1001.1",
"@angular/cli": "10.1.1",
"@angular/compiler-cli": "10.1.1",
"@angular/language-service": "10.1.1",
"@angular/platform-server": "10.1.1",
"@types/node": "14.10.1",
"codelyzer": "6.0.0",
"ts-node": "8.10.2",
"tslint": "6.1.3",
"typescript": "~3.9.7"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
}
},
"platforms": []
}
}