-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "lbs-engine",
"displayName": "LBS-Engine",
"version": "1.0.0",
"description": "A template app for developing easy location based services.",
"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": "Lasse Einfeldt",
"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": {
"android-versions": "^1.3.0",
"bluebird": "^3.5.1",
"cordova-android": "^6.3.0",
"cordova-browser": "^5.0.3",
"cordova-plugin-file": "^6.0.1",
"cordova-plugin-geolocation": "^4.0.1",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-promise-fs": "^1.2.5",
"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": {}
},
"platforms": [
"browser",
"android"
]
}
}