-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
104 lines (104 loc) · 3.51 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
{
"name": "openlap",
"author": "Thomas Kemmer",
"homepage": "https://github.com/tkem/openlap/",
"description": "Open Source Slotcar Race App for Carrera(R) Digital 124/132",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tkem/openlap"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/forms": "^15.0.0",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/router": "^15.0.0",
"@angular/service-worker": "^15.0.0",
"@awesome-cordova-plugins/android-full-screen": "^6.3.0",
"@awesome-cordova-plugins/app-version": "^6.3.0",
"@awesome-cordova-plugins/ble": "^6.3.0",
"@awesome-cordova-plugins/core": "^6.3.0",
"@awesome-cordova-plugins/device": "^6.3.0",
"@awesome-cordova-plugins/insomnia": "^6.3.0",
"@awesome-cordova-plugins/social-sharing": "^6.3.0",
"@awesome-cordova-plugins/splash-screen": "^6.3.0",
"@awesome-cordova-plugins/status-bar": "^6.3.0",
"@awesome-cordova-plugins/text-to-speech-advanced": "file:./local_modules/text-to-speech-advanced",
"@awesome-cordova-plugins/toast": "^6.3.0",
"@ionic/angular": "^7.0.0",
"@ionic/cordova-builders": "^9.0.0",
"@ionic/core": "^7.0.0",
"@ionic/storage": "^2.3.1",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"cordova-android": "^13.0.0",
"cordova-ios": "^7.0.0",
"cordova-plugin-app-version": "^0.1.12",
"cordova-plugin-ble-central": "^1.6.3",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-device": "^3.0.0",
"cordova-plugin-fullscreen": "^1.3.0",
"cordova-plugin-inappbrowser": "^6.0.0",
"cordova-plugin-insomnia": "^4.3.0",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "^5.0.0",
"cordova-plugin-screen-orientation": "^3.0.3",
"cordova-plugin-statusbar": "^4.0.0",
"cordova-plugin-tts-advanced": "^0.5.2",
"cordova-plugin-x-socialsharing": "^6.0.3",
"cordova-plugin-x-toast": "^2.7.2",
"cordova-sqlite-storage": "^6.0.0",
"cordovarduino": "0.0.10",
"ionicons": "^7.0.0",
"rxjs": "^7.5.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular/cli": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@angular/language-service": "^15.0.0",
"@ionic/angular-toolkit": "^9.0.0",
"es6-promise-plugin": "^4.2.2",
"ts-node": "~8.3.0",
"typescript": "~4.8.4"
},
"cordova": {
"platforms": [
"android",
"ios"
],
"plugins": {
"cordova-plugin-app-version": {},
"cordova-plugin-ble-central": {
"ACCESS_BACKGROUND_LOCATION": "false"
},
"cordova-plugin-device": {},
"cordova-plugin-fullscreen": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-insomnia": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-tts-advanced": {},
"cordova-plugin-x-socialsharing": {},
"cordova-plugin-x-toast": {},
"cordova-sqlite-storage": {},
"cordovarduino": {}
}
}
}