-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
73 lines (73 loc) · 2.37 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
{
"name": "com.marianhello.bgexampleapp",
"version": "2.1.0",
"displayName": "BG Example",
"scripts": {
"clean": "rimraf www/*",
"copy": "cp-cli src/index.cordova.html www/index.html",
"copy-web": "cp-cli src/index.web.html www/index.html && cp-cli src/lib www/lib",
"compile": "webpack --progress --config webpack.config.js",
"build": "npm run clean && npm run copy && cross-env NODE_ENV=production npm run compile",
"build-web": "npm run clean && npm run copy-web && cross-env NODE_ENV=production npm run compile"
},
"dependencies": {
"@mauron85/cordova-plugin-background-geolocation": "^3.1.0",
"color": "^1.0.3",
"cordova-android": "^7.1.4",
"cordova-ios": "^5.0.0",
"cordova-plugin-device": "^1.1.7",
"cordova-plugin-dialogs": "^2.0.2",
"cordova-plugin-whitelist": "^1.3.4"
},
"devDependencies": {
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.1",
"uglifyjs-webpack-plugin": "^1.0.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^4.0.0",
"babel-preset-stage-2": "^6.24.1",
"rimraf": "^2.6.2",
"cp-cli": "^1.1.0",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"react": "=16.3.2",
"react-art": "=16.3.2",
"react-dom": "=16.3.2",
"react-google-maps": "=9.2.2",
"react-native-web": "=0.6.1",
"react-navigation": "=1.0.0-beta.19",
"prop-types": "=15.6.0",
"native-base": "=2.8.1",
"rmc-picker": "=5.0.4",
"rc-slider": "=8.6.1"
},
"cordova": {
"platforms": [
"ios",
"android"
],
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-background-geolocation": {
"GOOGLE_PLAY_SERVICES_VERSION": "11+",
"ANDROID_SUPPORT_LIBRARY_VERSION": "26+",
"ICON": "@mipmap/icon",
"SMALL_ICON": "@mipmap/icon",
"ACCOUNT_NAME": "@string/app_name",
"ACCOUNT_LABEL": "@string/app_name",
"ACCOUNT_TYPE": "$PACKAGE_NAME.account",
"CONTENT_AUTHORITY": "$PACKAGE_NAME"
}
}
}
}