-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 3.15 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
{
"name": "com.test.authapp",
"displayName": "AuthApp",
"version": "1.0.0",
"description": "A sample Apache Cordova application that responds to the deviceready event.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Apache Cordova Team",
"license": "Apache-2.0",
"dependencies": {
"@auth0/cordova": "^0.3.0",
"auth0-js": "^9.3.3",
"axios": "^0.18.0",
"cordova-android": "^7.0.0",
"cordova-kioskmode-plugin": "0.0.3",
"cordova-plugin-android-wifi-manager": "^1.2.0",
"cordova-plugin-background-mode": "^0.7.2",
"cordova-plugin-brightness": "^0.2.0",
"cordova-plugin-camera": "^4.0.2",
"cordova-plugin-camera-preview": "^0.9.0",
"cordova-plugin-crosswalk-webview": "^2.4.0",
"cordova-plugin-customurlscheme": "^4.3.0",
"cordova-plugin-device": "^2.0.1",
"cordova-plugin-dialogs": "^2.0.1",
"cordova-plugin-googleplus": "^5.3.0",
"cordova-plugin-hidden-statusbar": "^1.0.0",
"cordova-plugin-kiosk": "git+https://github.com/hkalina/cordova-plugin-kiosk.git",
"cordova-plugin-kiosk-launcher": "git+https://github.com/guatedude2/cordova-plugin-kiosk-launcher.git",
"cordova-plugin-navigationbar": "^1.0.31",
"cordova-plugin-network-information": "^2.0.1",
"cordova-plugin-safariviewcontroller": "^1.5.3",
"cordova-plugin-screen-locker": "^0.2.2",
"cordova-plugin-statusbar": "^2.4.1",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-plugin-x-toast": "^2.6.2",
"kioskmode2-cordova": "^1.0.3"
},
"cordova": {
"plugins": {
"cordova-plugin-safariviewcontroller": {},
"cordova-plugin-customurlscheme": {
"URL_SCHEME": "com.test.AuthApp",
"ANDROID_SCHEME": "com.test.AuthApp",
"ANDROID_HOST": "reactappur12344.eu.auth0.com",
"ANDROID_PATHPREFIX": "C:/Program Files/Git/cordova/com.test.AuthApp/callback"
},
"cordova-plugin-whitelist": {},
"cordova-plugin-googleplus": {
"REVERSED_CLIENT_ID": "com.googleusercontent.apps.1077147960461-4pqlqntk25vut4jlm1hqv3u5effu6a7v"
},
"cordova-plugin-background-mode": {},
"cordova-plugin-x-toast": {},
"cordova-plugin-network-information": {},
"cordova-plugin-android-wifi-manager": {},
"cordova-plugin-brightness": {},
"cordova-plugin-screen-locker": {},
"cordova-plugin-camera": {},
"cordova-plugin-kiosk": {},
"cordova-plugin-dialogs": {},
"cordova-plugin-camera-preview": {}
},
"platforms": [
"android"
]
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.2",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0"
}
}