-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.84 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.84 KB
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
{
"name": "scanbot-sdk-example-ionic",
"version": "4.18.3",
"author": "Scanbot SDK GmbH",
"homepage": "https://scanbot.io",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/common": "^15.2.9",
"@angular/core": "^15.2.9",
"@angular/forms": "^15.2.9",
"@angular/platform-browser": "^15.2.9",
"@angular/platform-browser-dynamic": "^15.2.9",
"@angular/router": "^15.2.9",
"@awesome-cordova-plugins/camera": "^8.1.0",
"@awesome-cordova-plugins/core": "^8.1.0",
"@awesome-cordova-plugins/file": "^8.1.0",
"@awesome-cordova-plugins/status-bar": "^8.1.0",
"@ionic-native/camera": "^5.36.0",
"@ionic/angular": "6.7.5",
"@ionic/cordova-builders": "^11.0.0",
"@ionic/storage-angular": "^3.0.6",
"core-js": "^3.30.0",
"rxjs": "6.6.0",
"sass": "^1.60.0",
"sharp": "^0.32.0",
"source-map": "^0.7.4",
"underscore": "1.13.6",
"zone.js": "^0.13.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1502.4",
"@angular-devkit/build-angular": "^15.2.9",
"@angular-devkit/core": "^15.2.9",
"@angular-devkit/schematics": "^15.2.9",
"@angular/cli": "^15.2.4",
"@angular/compiler": "^15.2.5",
"@angular/compiler-cli": "^15.2.5",
"@angular/language-service": "^15.2.5",
"@ionic/angular-toolkit": "^9.0.0",
"@types/jasmine": "^4.3.5",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^18.15.11",
"compare-func": "^2.0.0",
"cordova-android": "^14.0.0",
"cordova-ios": "^7.0.0",
"cordova-plugin-camera": "8.0.0",
"cordova-plugin-device": "^3.0.0",
"cordova-plugin-file": "8.1.3",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "^5.0.0",
"cordova-plugin-scanbot-sdk": "4.18.3",
"cordova-plugin-splashscreen": "^6.0.0",
"cordova-plugin-statusbar": "^4.0.0",
"jasmine-core": "5.1.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"description": "Example App for the Scanbot SDK Cordova Plugin with Ionic Framework",
"cordova": {
"plugins": {
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-camera": {},
"cordova-plugin-file": {
"ANDROIDX_WEBKIT_VERSION": "1.4.0"
},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-scanbot-sdk": {
"CAMERA_USAGE_DESCRIPTION": " "
}
},
"platforms": [
"android",
"ios"
]
}
}