-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.6 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.6 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
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
{
"name": "webnative-app",
"version": "1.30.0",
"author": "WebNative LLC",
"homepage": "https://webnative.dev/",
"scripts": {
"prepare": "husky install",
"ng": "ng",
"start": "ng serve",
"build": "npm run packages && ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:unit": "vitest",
"test:unit:ui": "vitest --ui",
"test:unit:run": "vitest run",
"lint": "ng lint",
"capacitor:sync:after": "node patch/fix-cap-bridge.js & cp patch/CAPLog.swift 'node_modules/@capacitor/ios/Capacitor/Capacitor/CAPLog.swift' && cp patch/Logger.java 'node_modules/@capacitor/android/capacitor/src/main/java/com/getcapacitor/Logger.java'",
"lint-fix": "eslint . --ext .ts --fix && prettier \"**/*.ts\" --write",
"deploy": "npm run build && netlify deploy --prod",
"packages": "npm run build-packages || npm run write-packages",
"build-packages": "npx tsc ./scripts/list-plugins.ts > /dev/null",
"write-packages": "node ./scripts/list-plugins.js",
"assets": "npx capacitor-assets generate --iconBackgroundColor '#333333' --iconBackgroundColorDark '#333333' --splashBackgroundColor '#333333' --splashBackgroundColorDark '#333333'"
},
"prettier": "@ionic/prettier-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"private": true,
"dependencies": {
"@angular/common": "^21.1.3",
"@angular/core": "^21.1.3",
"@angular/forms": "^21.1.3",
"@angular/platform-browser": "^21.1.3",
"@angular/platform-browser-dynamic": "^21.1.3",
"@angular/router": "^21.1.3",
"@capacitor-community/apple-sign-in": "7.1.0",
"@capacitor-community/bluetooth-le": "8.0.1",
"@capacitor-community/camera-preview": "7.0.4",
"@capacitor-community/keep-awake": "8.0.0",
"@capacitor/action-sheet": "^8.0.0",
"@capacitor/android": "^8.0.2",
"@capacitor/app": "^8.0.0",
"@capacitor/barcode-scanner": "3.0.1",
"@capacitor/browser": "^8.0.0",
"@capacitor/camera": "^8.0.0",
"@capacitor/clipboard": "^8.0.0",
"@capacitor/core": "^8.0.2",
"@capacitor/device": "^8.0.0",
"@capacitor/dialog": "^8.0.0",
"@capacitor/file-viewer": "2.0.0",
"@capacitor/filesystem": "8.1.0",
"@capacitor/geolocation": "^8.0.0",
"@capacitor/haptics": "^8.0.0",
"@capacitor/inappbrowser": "3.0.1",
"@capacitor/ios": "^8.0.2",
"@capacitor/keyboard": "^8.0.0",
"@capacitor/local-notifications": "^8.0.0",
"@capacitor/motion": "^8.0.0",
"@capacitor/network": "^8.0.0",
"@capacitor/preferences": "^8.0.0",
"@capacitor/screen-orientation": "^8.0.0",
"@capacitor/screen-reader": "^8.0.0",
"@capacitor/share": "^8.0.0",
"@capacitor/splash-screen": "^8.0.0",
"@capacitor/status-bar": "^8.0.0",
"@capacitor/text-zoom": "^8.0.0",
"@capacitor/toast": "^8.0.0",
"@capawesome/capacitor-file-picker": "8.0.1",
"@ionic/angular": "8.7.17",
"@ionic/remote-log": "0.0.2",
"@sentry/capacitor": "2.4.1",
"@webnativellc/cordova-plugin-ionic-discover": "^1.0.5",
"angularx-qrcode": "21.0.4",
"animate.css": "^4.1.1",
"cordova-plugin-advanced-http": "3.3.1",
"cordova-plugin-file": "8.1.3",
"cordova-plugin-inappbrowser": "6.0.0",
"ionicons": "7.4.0",
"rxjs": "7.8.2",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.1.2",
"@angular-eslint/builder": "21",
"@angular-eslint/eslint-plugin": "21",
"@angular-eslint/eslint-plugin-template": "21",
"@angular-eslint/template-parser": "21",
"@angular/cli": "^21.1.2",
"@angular/compiler": "^21.1.3",
"@angular/compiler-cli": "^21.1.3",
"@angular/language-service": "^21.1.3",
"@capacitor/cli": "^8.0.2",
"@ionic/angular-toolkit": "12.3.0",
"@ionic/eslint-config": "0.4.0",
"@ionic/prettier-config": "4.0.0",
"@types/jasmine": "4.6.0",
"@types/node": "22.10.7",
"@types/qrcode": "1.5.6",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.4.0",
"@vitest/ui": "4.0.18",
"eslint": "~8.57.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "61.1.12",
"eslint-plugin-prefer-arrow": "1.2.3",
"husky": "8.0.3",
"jasmine-core": "5.1.1",
"jasmine-spec-reporter": "7.0.0",
"jsdom": "^27.4.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"tslib": "2.6.2",
"typescript": "5.9.2",
"vitest": "^4.0.18"
},
"description": "Browser Mobile Application"
}