-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.13 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
{
"name": "news-app",
"version": "0.0.1",
"description": "A news app built with Angular and Ionic.",
"private": true,
"scripts": {
"ng": "ng",
"start:web": "ng serve",
"start:ios": "ionic capacitor run ios --livereload --external",
"start:android": "ionic capacitor run android --livereload --external",
"start:emulators": "firebase emulators:start --project=demo-news-app",
"build:web": "ng build --configuration=production",
"build:ios": "ionic capacitor build ios --configuration=production",
"build:android": "ionic capacitor build android --configuration=production",
"generate:assets": "npx @capacitor/assets generate",
"firebase:deploy": "ng build --configuration=production && firebase deploy",
"firebase:deploy:hosting": "ng build && firebase deploy --only hosting",
"firebase:deploy:firestore-rules": "firebase deploy --only firestore:rules",
"firebase:deploy:firestore-indexes": "firebase deploy --only firestore:indexes",
"firebase:deploy:storage-rules": "firebase deploy --only storage"
},
"dependencies": {
"@angular/animations": "^16.0.0",
"@angular/cdk": "^16.1.1",
"@angular/common": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/fire": "^7.6.1",
"@angular/forms": "^16.0.0",
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"@angular/service-worker": "^16.0.0",
"@capacitor/android": "5.0.5",
"@capacitor/app": "5.0.3",
"@capacitor/camera": "^5.0.4",
"@capacitor/core": "5.0.5",
"@capacitor/haptics": "5.0.4",
"@capacitor/ios": "5.0.5",
"@capacitor/keyboard": "5.0.4",
"@capacitor/splash-screen": "^5.0.4",
"@capacitor/status-bar": "5.0.4",
"@codetrix-studio/capacitor-google-auth": "^3.3.2",
"@ionic/angular": "^7.0.0",
"@ionic/pwa-elements": "^3.1.1",
"@ngxs/store": "^3.8.1",
"firebase": "^9.22.2",
"ionicons": "^7.0.0",
"ngx-quill": "^22.0.0",
"quill": "^1.3.7",
"quill-blot-formatter": "^1.0.5",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.0",
"@angular-eslint/builder": "^16.0.0",
"@angular-eslint/eslint-plugin": "^16.0.0",
"@angular-eslint/eslint-plugin-template": "^16.0.0",
"@angular-eslint/schematics": "^16.0.0",
"@angular-eslint/template-parser": "^16.0.0",
"@angular/cli": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/compiler-cli": "^16.0.0",
"@angular/language-service": "^16.0.0",
"@capacitor/assets": "^2.0.4",
"@capacitor/cli": "5.0.5",
"@ionic/angular-toolkit": "^9.0.0",
"@ngxs/devtools-plugin": "^3.8.1",
"@types/node": "^12.11.1",
"@types/quill": "1.3.7",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"eslint": "^7.26.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"firebase-tools": "^12.4.0",
"prettier": "2.8.8",
"ts-node": "^8.3.0",
"typescript": "~5.0.2"
}
}