generated from nicorac/ionic-capacitor-angular-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
76 lines (76 loc) · 2.7 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
{
"name": "bcrgui",
"version": "0.0.0",
"author": "Claudio Nicora",
"description": "BCR-GUI is a companion app for BCR (Basic Call Recorder)",
"homepage": "https://github.com/nicorac/bcr-gui",
"scripts": {
"ng": "ng",
"start": "ionic serve",
"build": "ng build",
"fix-android-permissions": "adb shell su -c chmod a+rw /proc/net/unix",
"check-i18n-files": "node -r ts-node/register scripts/check-i18n-files.ts",
"prebuild:android": "node scripts/check-android-version.js",
"build:android": "ionic capacitor build android --no-open --prod && cd android && gradlew assembleRelease && cd ..",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"update-all-packages": "npm install --save $(npm outdated | cut -d \" \" -f -1 | sed '1d' | sed 's/$/@*/')",
"generate-assets": "npx capacitor-assets generate --assets-path app/src/assets/icons --android",
"open-android-studio": "npx cap open android"
},
"private": true,
"dependencies": {
"@angular/cdk": "18.2.11",
"@angular/common": "18.2.11",
"@angular/core": "18.2.11",
"@angular/forms": "18.2.11",
"@angular/platform-browser": "18.2.11",
"@angular/platform-browser-dynamic": "18.2.11",
"@angular/router": "18.2.11",
"@capacitor-community/contacts": "6.1.1",
"@capacitor/android": "6.1.2",
"@capacitor/app": "6.0.1",
"@capacitor/clipboard": "6.0.1",
"@capacitor/core": "6.1.2",
"@capacitor/device": "6.0.1",
"@capacitor/filesystem": "6.0.1",
"@capacitor/preferences": "6.0.2",
"@capacitor/share": "6.0.2",
"@capacitor/status-bar": "6.0.1",
"@capgo/capacitor-navigation-bar": "6.1.64",
"@ionic/angular": "8.3.4",
"capacitor-native-settings": "6.0.1",
"filesize": "10.1.6",
"ionicons": "7.4.0",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"zone.js": "0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.11",
"@angular-eslint/builder": "18.4.0",
"@angular-eslint/eslint-plugin": "18.4.0",
"@angular-eslint/eslint-plugin-template": "18.4.0",
"@angular-eslint/template-parser": "18.4.0",
"@angular/cli": "18.2.11",
"@angular/compiler": "18.2.11",
"@angular/compiler-cli": "18.2.11",
"@capacitor/assets": "3.0.5",
"@capacitor/cli": "6.1.2",
"@ionic/angular-toolkit": "12.1.1",
"@types/jasmine": "5.1.4",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.14.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.4.3",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"engines": {
"npm": ">= 10.9.0",
"node": ">= 20.0.0"
}
}