-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
91 lines (91 loc) · 3.02 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
{
"name": "cordova-plugin-fbsdk-lab",
"description": "A demo application for the cordova-plugin-fbsdk",
"version": "0.1.0",
"author": "Maxim Belov",
"homepage": "https://github.com/MaximBelov/cordova-plugin-fbsdk",
"scripts": {
"postinstall": "patch-package",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build:android": "ionic cordova build android",
"serve:android": "ionic cordova run android --verbose --livereload --host=192.168.1.3",
"build:ios": "ionic cordova build ios",
"serve:ios": "ionic cordova run ios --verbose --livereload --external",
"cleanUp": "rm -rf {platforms,plugins}"
},
"private": true,
"dependencies": {
"@angular/common": "18.2.10",
"@angular/core": "18.2.10",
"@angular/forms": "18.2.10",
"@angular/platform-browser": "18.2.10",
"@angular/platform-browser-dynamic": "18.2.10",
"@angular/router": "18.2.10",
"@awesome-cordova-plugins/core": "6.11.0",
"@awesome-cordova-plugins/facebook": "6.11.0",
"@awesome-cordova-plugins/splash-screen": "6.11.0",
"@awesome-cordova-plugins/status-bar": "6.11.0",
"@ionic/angular": "8.4.0",
"cordova-android": "13.0.0",
"cordova-ios": "7.1.0",
"core-js": "3.39.0",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"zone.js": "0.14.10"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^18.0.0",
"@angular-devkit/architect": "0.1802.12",
"@angular-devkit/build-angular": "18.2.10",
"@angular-devkit/core": "18.2.10",
"@angular-devkit/schematics": "18.2.10",
"@angular/cli": "18.2.10",
"@angular/compiler": "18.2.10",
"@angular/compiler-cli": "18.2.10",
"@angular/language-service": "18.2.10",
"@ionic/angular-toolkit": "12.1.1",
"@ionic/cordova-builders": "12.1.2",
"@types/cordova": "^11.0.3",
"@types/facebook-js-sdk": "^3.3.12",
"@types/node": "20.17.6",
"cordova-plugin-device": "3.0.0",
"cordova-plugin-fbsdk": "file:../plugin",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "5.0.1",
"cordova-plugin-statusbar": "4.0.0",
"dotenv-webpack": "^8.1.0",
"patch-package": "^8.0.0",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"cordova": {
"plugins": {
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-fbsdk": {
"APP_ID": "431082375696800",
"APP_NAME": "Cordova Plugin F6 Lab",
"CLIENT_TOKEN": "abcd1234",
"FACEBOOK_URL_SCHEME_SUFFIX": " ",
"OTHER_APP_SCHEMES": " ",
"FACEBOOK_AUTO_LOG_APP_EVENTS": "true",
"FACEBOOK_HYBRID_APP_EVENTS": "false",
"FACEBOOK_ADVERTISER_ID_COLLECTION": "true",
"FACEBOOK_ANDROID_SDK_VERSION": "17.0.2",
"FACEBOOK_IOS_SDK_VERSION": "17.1.0",
"FACEBOOK_BROWSER_SDK_VERSION": "v21.0"
}
},
"platforms": [
"ios",
"android"
]
}
}