-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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": "cordova-plugin-android-photo-sample",
"displayName": "Take a Photo",
"description": "Sample Cordova application demonstrating how to use the cordova-plugin-android-photo plugin",
"version": "1.0.0",
"author": "Shaun Johansen",
"license": "ISC",
"scripts": {
"start": "./bin/make-page-index-files.js && react-scripts start",
"build": "./bin/make-page-index-files.js && react-scripts build",
"test": "./bin/make-page-index-files.js && react-scripts test",
"reset-cordova-android": "mkdir -p www && cordova platform remove android && cordova platform add android"
},
"dependencies": {
"@material-ui/core": "^3.5.1",
"@material-ui/icons": "^3.0.1",
"blueimp-load-image": "^2.20.1",
"cordova": "^8.1.2",
"cordova-android": "^7.1.3",
"cordova-plugin-android-photo": "^5.0.0",
"cordova-plugin-file": "^6.0.1",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-whitelist": "^1.3.3",
"lodash": "^4.17.11",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1"
},
"devDependencies": {
"eslint-plugin-sort-imports-es6-autofix": "^0.3.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-android-photo": {},
"cordova-plugin-file": {}
},
"platforms": [
"android"
]
},
"homepage": "../www"
}