-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.39 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
{
"name": "iTranslate",
"version": "0.3.8",
"author": "gpiroux",
"homepage": "https://ionicframework.com/",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"prettier": "prettier --write \"./src/{app,environments,assets}/**/*.{ts,js,css,scss,html}\"",
"pretty-quick": "pretty-quick --staged",
"build-ios": "ionic cordova build ios --configuration production",
"run-ios": "ionic cordova run ios --configuration production"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"private": true,
"dependencies": {
"@angular/common": "~12.2.14",
"@angular/core": "~12.2.14",
"@angular/fire": "^7",
"@angular/forms": "~12.2.14",
"@angular/platform-browser": "~12.2.14",
"@angular/platform-browser-dynamic": "~12.2.14",
"@angular/router": "~12.2.14",
"@angular/service-worker": "~12.2.14",
"@ionic-native/core": "^5.0.0",
"@ionic-native/file": "^5.24.0",
"@ionic-native/http": "^5.23.0",
"@ionic-native/splash-screen": "^5.0.0",
"@ionic-native/status-bar": "^5.0.0",
"@ionic/angular": "^6.0.0",
"@ionic/cli": "^6.18.1",
"@types/lodash": "^4.14.149",
"cordova": "^9.0.0",
"cordova-ios": "^5.1.1",
"cordova-plugin-advanced-http": "^2.4.1",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-ionic": "^5.4.7",
"core-js": "^2.5.4",
"firebase": "^9",
"firebaseui": "^6",
"lodash": "^4.17.15",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.14",
"@angular/cli": "~12.2.14",
"@angular/compiler": "~12.2.14",
"@angular/compiler-cli": "~12.2.14",
"@angular/language-service": "~12.2.14",
"@babel/compat-data": "7.8.0",
"@ionic/angular-toolkit": "^5.0.3",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.20.37",
"codelyzer": "^6.0.0",
"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.2.5",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5"
},
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-advanced-http": {},
"cordova-plugin-file": {},
"cordova-plugin-ionic": {
"APP_ID": "802d7b13",
"CHANNEL_NAME": "Production",
"UPDATE_METHOD": "background",
"MAX_STORE": "2",
"MIN_BACKGROUND_DURATION": "30",
"UPDATE_API": "https://api.ionicjs.com"
}
},
"platforms": [
"ios"
]
}
}