-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 4.22 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "photo-rc1",
"version": "0.0.1",
"author": "Ionic Framework",
"homepage": "http://ionicframework.com/",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/common": "~11.2.5",
"@angular/core": "~11.2.5",
"@angular/forms": "~11.2.5",
"@angular/platform-browser": "~11.2.5",
"@angular/platform-browser-dynamic": "~11.2.5",
"@angular/router": "~11.2.5",
"@ionic-native/camera": "^5.9.0",
"@ionic-native/camera-preview": "^5.15.1",
"@ionic-native/core": "5.0.0-beta.21",
"@ionic-native/file": "^5.0.0",
"@ionic-native/social-sharing": "^5.0.0",
"@ionic-native/splash-screen": "5.0.0-beta.21",
"@ionic-native/status-bar": "5.0.0-beta.21",
"@ionic/angular": "^5.6.0",
"@ionic/pro": "2.0.4",
"@ionic/storage": "^2.2.0",
"cordova-android": "8.0.0",
"cordova-ios": "5.0.0",
"cordova-plugin-camera": "~4.0.3",
"cordova-plugin-camera-preview": "^0.11.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-ionic-keyboard": "^2.1.3",
"cordova-plugin-ionic-webview": "^2.5.1",
"cordova-plugin-splashscreen": "^5.0.3",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-whitelist": "^1.3.4",
"cordova-plugin-x-socialsharing": "^5.4.7",
"cordova-sqlite-storage": "^2.6.0",
"core-js": "^2.6.9",
"es6-promise-plugin": "^4.2.2",
"fast-json-stable-stringify": "^2.0.0",
"handlebars": "^4.7.7",
"js-yaml": "^3.13.1",
"json-stringify-safe": "^5.0.1",
"psl": "^1.8.0",
"rxjs": "^6.6.6",
"shelljs": "^0.8.3",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1102.4",
"@angular-devkit/build-angular": "~0.1102.3",
"@angular-devkit/core": "^11.2.4",
"@angular-devkit/schematics": "^11.2.4",
"@angular-eslint/builder": "1.2.0",
"@angular-eslint/eslint-plugin": "1.2.0",
"@angular-eslint/eslint-plugin-template": "1.2.0",
"@angular-eslint/schematics": "1.2.0",
"@angular-eslint/template-parser": "1.2.0",
"@angular/cli": "^11.2.4",
"@angular/compiler": "^11.2.5",
"@angular/compiler-cli": "^11.2.5",
"@angular/language-service": "^11.2.5",
"@ionic/angular-toolkit": "^1.5.1",
"@types/jasmine": "^2.8.16",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^10.14.12",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"codelyzer": "^5.0.1",
"eslint": "^7.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"json-stringify-safe": "^5.0.1",
"karma": "^6.2.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage": "^2.0.3",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-teamcity-reporter": "^1.1.0",
"node-sass": "^4.13.1",
"protractor": "^7.0.0",
"ts-node": "~7.0.0",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
},
"description": "This is my graduation project. The objective is to detect the disease in the coffee leaf and the contamination percentage.",
"cordova": {
"plugins": {
"cordova-plugin-camera": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
},
"cordova-plugin-ionic-keyboard": {},
"cordova-sqlite-storage": {},
"cordova-plugin-x-socialsharing": {
"ANDROID_SUPPORT_V4_VERSION": "24.1.1+",
"PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION": "This app requires photo library access to function properly.",
"PHOTO_LIBRARY_USAGE_DESCRIPTION": "This app requires photo library access to function properly."
},
"cordova-plugin-file": {},
"cordova-plugin-camera-preview": {
"ANDROID_SUPPORT_LIBRARY_VERSION": "26+"
}
},
"platforms": [
"android",
"ios"
]
}
}