-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.58 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
{
"name": "tricloud-app",
"displayName": "TriCloud App",
"version": "1.0.0",
"description": "TriCloud App for mobile devices.",
"main": ".",
"homepage": ".",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd ../tricloud-client-react/ && npm run build && cd ../tricloud-client-mobile/ && cordova run android"
},
"author": "TriCloud Team",
"license": "MIT",
"dependencies": {
"cordova-android": "^8.0.0",
"cordova-browser": "^5.0.4",
"cordova-common": "^3.2.0",
"cordova-plugin-badge": "^0.8.8",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-dialogs": "^2.0.2",
"cordova-plugin-firebase-messaging": "^2.1.6",
"cordova-plugin-local-notification": "^0.9.0-beta.2",
"cordova-plugin-local-notifications": "^1.0.0",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-serve": "^3.0.0",
"cordova-support-android-plugin": "^1.0.1",
"cordova-support-google-services": "^1.3.1"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-firebase-messaging": {
"FIREBASE_CORE_VERSION": "16.0.+",
"FIREBASE_MESSAGING_VERSION": "18.0.+",
"ANDROID_SUPPORT_VERSION": "28.+"
},
"cordova-support-google-services": {},
"cordova-plugin-local-notification": {},
"cordova-plugin-dialogs": {}
},
"platforms": [
"browser",
"android"
]
}
}