-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
117 lines (117 loc) · 4.51 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
117
{
"name": "dianoia",
"version": "2.4.4",
"author": "SciFY",
"homepage": "https://dianoia-app.scify.org/",
"private": true,
"scripts": {
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"lint": "ionic-app-scripts lint",
"serve": "ionic-app-scripts serve",
"build-docs": "del-cli --force ./docs/ && node copy_browser_www_to_docs.js",
"build-android": "ionic cordova build android",
"build-browser": "del-cli --force ./platforms/browser/www && del-cli --force ./www && ionic cordova build browser"
},
"dependencies": {
"@angular/common": "4.1.0",
"@angular/compiler": "4.1.0",
"@angular/compiler-cli": "4.1.0",
"@angular/core": "4.1.0",
"@angular/forms": "4.1.0",
"@angular/http": "4.1.0",
"@angular/platform-browser": "4.1.0",
"@angular/platform-browser-dynamic": "4.1.0",
"@ionic-native/analytics-firebase": "^4.20.0",
"@ionic-native/app-version": "^4.20.0",
"@ionic-native/core": "^3.10.3",
"@ionic-native/device": "^4.20.0",
"@ionic-native/fcm": "^4.20.0",
"@ionic-native/globalization": "^4.20.0",
"@ionic-native/in-app-browser": "^3.10.3",
"@ionic-native/native-storage": "^3.10.3",
"@ionic-native/social-sharing": "^3.11.0",
"@ionic-native/splash-screen": "3.7.0",
"@ionic-native/sqlite": "^5.36.0",
"@ionic-native/status-bar": "3.7.0",
"@ionic/storage": "^2.0.1",
"@ngx-translate/core": "^7.2.2",
"@ngx-translate/http-loader": "^0.1.0",
"cordova-android": "^8.1.0",
"cordova-android-support-gradle-release": "^3.0.1",
"cordova-annotated-plugin-android": "^1.0.4",
"cordova-custom-config": "^5.1.1",
"cordova-play-services-version-adapter": "^1.1.0",
"cordova-plugin-analytics": "^2.0.0",
"cordova-plugin-androidx": "^3.0.0",
"cordova-plugin-androidx-adapter": "^1.1.3",
"cordova-plugin-app-version": "^0.1.14",
"cordova-plugin-console": "^1.1.0",
"cordova-plugin-device": "^2.1.0",
"cordova-plugin-firebase-analytics": "^3.0.0",
"cordova-plugin-globalization": "^1.11.0",
"cordova-plugin-inappbrowser": "^3.2.0",
"cordova-plugin-nativestorage": "^2.3.2",
"cordova-plugin-splashscreen": "^4.1.0",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-whitelist": "^1.3.5",
"cordova-plugin-x-socialsharing": "^6.0.4",
"cordova-plugin-x-toast": "^2.7.3",
"cordova-sqlite-storage": "^6.1.0",
"cordova-support-android-plugin": "^1.0.1",
"cordova-support-google-services": "^1.4.1",
"es6-promise-plugin": "^4.2.2",
"ionic-angular": "3.2.1",
"ionic-plugin-keyboard": "^2.2.1",
"ionicons": "3.0.0",
"rxjs": "^5.4.2",
"sw-toolbox": "3.6.0",
"zone.js": "0.8.10"
},
"devDependencies": {
"@ionic/app-scripts": "^3.2.4",
"cordova-res": "^0.15.3",
"del-cli": "^4.0.1",
"typescript": "^2.4.2"
},
"cordovaPlugins": [
"cordova-plugin-whitelist",
"cordova-plugin-console",
"cordova-plugin-statusbar",
"cordova-plugin-device",
"cordova-plugin-splashscreen",
"ionic-plugin-keyboard"
],
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-console": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {},
"ionic-plugin-keyboard": {},
"cordova-plugin-nativestorage": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-x-toast": {},
"cordova-plugin-firebase-analytics": {
"FIREBASE_CORE_VERSION": "17.0.+"
},
"cordova-plugin-analytics": {},
"cordova-support-google-services": {},
"cordova-play-services-version-adapter": {},
"cordova-plugin-app-version": {},
"cordova-android-support-gradle-release": {
"ANDROID_SUPPORT_VERSION": "27.+"
},
"cordova-sqlite-storage": {},
"cordova-plugin-globalization": {},
"cordova-custom-config": {},
"cordova-plugin-androidx": {},
"cordova-plugin-androidx-adapter": {},
"cordova-plugin-x-socialsharing": {}
},
"platforms": [
"android"
]
}
}