-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.3 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
{
"name": "autobeat",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"resources": "capacitor-resources -p android,ios",
"deploy": "ng build && copyfiles .well-known/assetlinks.json dist/autobeat/browser && firebase deploy && npx cap sync && npx cap open android"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.0.0",
"@angular/cdk": "^14.2.1",
"@angular/common": "^14.0.0",
"@angular/compiler": "^14.0.0",
"@angular/core": "^14.0.0",
"@angular/flex-layout": "^14.0.0-beta.40",
"@angular/forms": "^14.0.0",
"@angular/material": "^14.2.1",
"@angular/platform-browser": "^14.0.0",
"@angular/platform-browser-dynamic": "^14.0.0",
"@angular/platform-server": "^14.0.0",
"@angular/router": "^14.0.0",
"@angular/service-worker": "^14.0.0",
"@awesome-cordova-plugins/background-mode": "^5.45.0",
"@capacitor/android": "^4.3.0",
"@capacitor/app": "^4.0.1",
"@capacitor/core": "^4.3.0",
"@capacitor/ios": "^4.3.0",
"capacitor-resources": "^2.0.5",
"cordova-androidx-build": "^1.0.4",
"cordova-plugin-background-mode": "bitbucket:TheBosZ/cordova-plugin-run-in-background",
"cordova-plugin-device": "^2.1.0",
"ngx-mat-select-search": "^4.2.1",
"node-vibrant": "^3.1.6",
"rxjs": "~7.5.0",
"tinycolor2": "^1.4.2",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.1",
"@angular/cli": "~14.2.1",
"@angular/compiler-cli": "^14.0.0",
"@capacitor/cli": "^6.1.1",
"@types/jasmine": "~4.0.0",
"@types/node": "^18.7.16",
"jasmine-core": "~4.3.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~4.7.2"
},
"overrides": {
"node-vibrant": {
"@vibrant/image-node": {
"@jimp/types": {
"@jimp/jpeg": {
"jpeg-js": "^0.4.4"
}
}
}
},
"capacitor-resources": {
"jimp": {
"@jimp/types": {
"@jimp/jpeg": {
"jpeg-js": "^0.4.4"
}
}
}
}
}
}