-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 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
{
"name": "scanbot-example-sdk-capacitor",
"version": "8.0.0",
"author": "Scanbot SDK",
"homepage": "https://scanbot.io",
"description": "Scanbot SDK Example App for Capacitor with Angular",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration development",
"sync": "npx cap sync",
"android": "npx cap run android",
"ios": "npx cap run ios",
"install-pods": "cd ios/App && pod install --repo-update",
"watch": "ng build --watch --configuration development",
"tscheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,html,scss,json}\"",
"clean": "rm -r -f node_modules && rm -f package-lock.json && rm -r -f www && cd ios/App && rm -r -f Pods && rm -f Podfile.lock"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.0.6",
"@angular/common": "^21.0.6",
"@angular/compiler": "^21.0.6",
"@angular/core": "^21.0.6",
"@angular/forms": "^21.0.6",
"@angular/platform-browser": "^21.0.6",
"@angular/platform-browser-dynamic": "^21.0.6",
"@angular/router": "^21.0.6",
"@capacitor-community/file-opener": "7.0.1",
"@capacitor/android": "^8.0.0",
"@capacitor/app": "^8.0.0",
"@capacitor/camera": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@capacitor/filesystem": "^8.0.0",
"@capacitor/ios": "^8.0.0",
"@capacitor/status-bar": "^8.0.0",
"@capawesome/capacitor-file-picker": "7.0.1",
"@ionic/angular": "^8.0.0",
"capacitor-plugin-scanbot-sdk": "8.0.0",
"ionicons": "^7.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^21.0.4",
"@angular/cli": "^21.0.4",
"@angular/compiler-cli": "^21.0.6",
"@angular/language-service": "^21.0.6",
"@capacitor/cli": "^8.0.0",
"@ionic/angular-toolkit": "^12.0.0",
"prettier": "^3.5.3",
"typescript": "~5.9.3"
},
"engines": {
"node": ">=20"
},
"browserslist": [
"Chrome >=111",
"ChromeAndroid >=111",
"Firefox >=112",
"Edge >=111",
"Safari >=15.1",
"iOS >=15.1"
]
}