forked from LEinfeldt/LBS-Engine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
{
"name": "geofreebie",
"displayName": "Geofreebie",
"version": "1.0.0",
"description": "A location-based freecycling app.",
"main": "index.js",
"scripts": {
"build": "browserify -t [ babelify --presets [ react ] ] src/index.js -o www/bundle.js",
"devBuild": "browserify --debug -t [ babelify --presets [ react ] ] src/index.js -o www/bundle.js"
},
"author": "Lucas Braun",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"onsenui": "^2.9.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-onsenui": "^1.10.0"
},
"dependencies": {
"@auth0/cordova": "^0.3.0",
"android-versions": "^1.3.0",
"auth0-js": "^9.8.2",
"bluebird": "^3.5.1",
"cordova-android": "^7.0.0",
"cordova-browser": "^5.0.4",
"cordova-plugin-camera": "^4.0.3",
"cordova-plugin-customurlscheme": "^4.3.0",
"cordova-plugin-file": "^6.0.1",
"cordova-plugin-geolocation": "^4.0.1",
"cordova-plugin-safariviewcontroller": "^1.5.4",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-promise-fs": "^1.2.5",
"geolib": "^2.0.24",
"leaflet": "^1.2.0",
"leaflet-offline": "^1.1.0",
"localforage": "^1.5.6",
"onsenui": "^2.9.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-leaflet": "^1.7.8",
"react-onsenui": "^1.10.0"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-file": {},
"cordova-plugin-geolocation": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-safariviewcontroller": {},
"cordova-plugin-customurlscheme": {
"URL_SCHEME": "com.lbraun.geofreebie",
"ANDROID_SCHEME": "com.lbraun.geofreebie",
"ANDROID_HOST": "geofreebie.eu.auth0.com",
"ANDROID_PATHPREFIX": "/cordova/com.lbraun.geofreebie/callback"
},
"cordova-plugin-camera": {}
},
"platforms": [
"browser",
"android"
]
}
}