-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.15 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.15 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
{
"name": "otis",
"version": "1.17.0",
"author": "Erwan Le Batard--Polès",
"homepage": "https://ionicframework.com/",
"scripts": {
"clean": "rimraf ./dist",
"prettier:git": "prettier --write $(git ls-files -m | xargs)",
"prettier": "prettier -w .",
"prettier:check": "prettier -c .",
"ng": "ng",
"start": "ng serve",
"build": "npm run clean && npx ionic build",
"build:prod": "npm run clean && npx ionic build --prod --release --engine browser ",
"deploy": "npm run build:prod && npm prune --production && firebase deploy --only hosting && npm ci",
"test": "ng test",
"e2e": "ng e2e"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:check"
}
},
"private": true,
"dependencies": {
"@angular/cdk": "^9.2.4",
"@angular/common": "^9.1.13",
"@angular/core": "^9.1.13",
"@angular/fire": "^5.2.3",
"@angular/forms": "~9.1.13",
"@angular/platform-browser": "~9.1.13",
"@angular/platform-browser-dynamic": "~9.1.13",
"@angular/router": "~9.1.13",
"@ionic-native/core": "^5.0.0",
"@ionic-native/firebase-authentication": "^5.19.0",
"@ionic-native/google-plus": "^5.19.0",
"@ionic-native/splash-screen": "^5.0.0",
"@ionic-native/status-bar": "^5.0.0",
"@ionic/angular": "^5.6.13",
"cordova-android": "^8.1.0",
"cordova-plugin-googleplus": "^8.2.1",
"core-js": "^3.16.1",
"firebase": "^7.7.0",
"highcharts": "^8.0.0",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"rxjs": "~6.6.7",
"tslib": "^1.10.0",
"underscore": "^1.9.1",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/architect": "~0.1200.5",
"@angular-devkit/build-angular": "~0.901.15",
"@angular-devkit/core": "~9.1.15",
"@angular-devkit/schematics": "~12.2.1",
"@angular/cli": "~9.1.15",
"@angular/compiler": "~9.1.13",
"@angular/compiler-cli": "~9.1.13",
"@angular/language-service": "~9.1.13",
"@ionic/angular-toolkit": "^4.0.0",
"@types/moment-duration-format": "^2.2.2",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-ionic-keyboard": "^2.2.0",
"cordova-plugin-ionic-webview": "^4.1.3",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-statusbar": "^2.4.2",
"cordova-plugin-whitelist": "^1.3.3",
"husky": "^4.3.6",
"ionic": "^5.4.16",
"prettier": "^2.2.1",
"protractor": "~5.4.0",
"rimraf": "^3.0.2",
"ts-node": "~7.0.0",
"typescript": "~3.8.3"
},
"description": "Otis Project",
"cordova": {
"plugins": {
"cordova-plugin-googleplus": {
"REVERSED_CLIENT_ID": "com.googleusercontent.apps.577715025244-reglkbs9sktvnqo4v6tk57p9p577arep",
"WEB_APPLICATION_CLIENT_ID": "1:577715025244:web:283c616bb1919d007a7d99"
},
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
},
"cordova-plugin-ionic-keyboard": {}
},
"platforms": [
"android"
]
}
}