-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "tympanRemote",
"version": "0.0.1",
"description": "App to control a Typman via Bluetooth Classic",
"author": "Creare",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve": "ionic serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"cordova": "cordova",
"clean": "shx rm -rf www/* && shx rm -rf platforms/* && shx rm -rf plugins/*",
"ionic": "ionic",
"prerun": "node bin/show-date.js",
"ionic.add.ios": "ionic cordova platform add ios",
"ionic.prepare.ios": "npm run prerun && ionic cordova prepare ios",
"ionic.build.ios": "npm run prerun && ionic cordova build ios -- --buildFlag=\"-UseModernBuildSystem=0\"",
"ionic.add.android": "ionic cordova platform add android",
"ionic.prepare.android": "npm run prerun && ionic cordova prepare android",
"ionic.build.android": "npm run prerun && ionic cordova build android",
"ionic.release.android": "npm run prerun && ionic cordova build android --prod --release",
"ionic.run.android": "npm run prerun && ionic cordova run android",
"resources": "ionic cordova resources --cordova-res"
},
"dependencies": {
"@angular/common": "^11.1.1",
"@angular/core": "^11.1.1",
"@angular/forms": "^11.1.1",
"@angular/platform-browser": "^11.1.1",
"@angular/platform-browser-dynamic": "^11.1.1",
"@angular/router": "^11.1.1",
"@ionic-native/android-permissions": "^5.31.1",
"@ionic-native/app-version": "^5.31.1",
"@ionic-native/ble": "^5.28.0",
"@ionic-native/core": "^5.31.1",
"@ionic-native/file": "^5.31.1",
"@ionic-native/splash-screen": "^5.31.1",
"@ionic-native/status-bar": "^5.31.1",
"@ionic/angular": "^5.5.3",
"@types/chart.js": "^2.9.30",
"apexcharts": "^3.24.0",
"chart.js": "^2.9.4",
"chartjs-plugin-streaming": "^1.8.0",
"cordova": "^10.0.0",
"cordova-android": "^9.0.0",
"cordova-ios": "^6.1.1",
"cordova-plugin-android-permissions": "^1.1.2",
"cordova-plugin-app-version": "^0.1.12",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-file": "6.0.2",
"cordova-plugin-ionic-keyboard": "^2.0.5",
"cordova-plugin-ionic-webview": "^5.0.0",
"cordova-plugin-splashscreen": "^6.0.0",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-whitelist": "^1.3.4",
"core-js": "^3.8.3",
"ieee754": "^1.2.1",
"lodash": "^4.17.21",
"macos-release": "^3.2.0",
"moment": "^2.29.2",
"ng2-charts": "^2.4.2",
"node-sass": "^7.0.0",
"rxjs": "^6.6.3",
"shx": "^0.3.3",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1101.1",
"@angular-devkit/build-angular": "^0.1101.1",
"@angular-devkit/core": "^11.1.2",
"@angular-devkit/schematics": "^11.1.2",
"@angular/cli": "^11.1.2",
"@angular/compiler": "^11.1.1",
"@angular/compiler-cli": "^11.1.1",
"@angular/language-service": "^11.1.1",
"@ionic/angular-toolkit": "^3.0.0",
"@ionic/cli": "^6.12.4",
"@types/jasmine": "^3.6.3",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^14.14.22",
"codelyzer": "^6.0.1",
"cordova-plugin-ble-central": "git+https://github.com/marioshtika/cordova-plugin-ble-central.git",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"native-run": "^1.3.0",
"protractor": "^7.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-app-version": {},
"cordova-plugin-android-permissions": {},
"cordova-plugin-file": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ble-central": {
"ACCESS_BACKGROUND_LOCATION": "false",
"IOS_INIT_ON_LOAD": "true",
"BLUETOOTH_USAGE_DESCRIPTION": "To connect to a Tympan device"
}
},
"platforms": [
"android",
"ios"
]
}
}