-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.51 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.51 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
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "summarize",
"version": "2.1.0",
"author": "Sandeep Kumar | IAM5K",
"homepage": "https://summarize-ng.web.app/",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "eslint . --ext .ts",
"fmt": "eslint --fix . --ext .ts",
"prettier": "prettier \"**/*.ts\"",
"postbuild": "gulp compress",
"prettier-format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"deploy": "ng build --configuration production && firebase deploy --only hosting",
"android": "ng build && npx cap sync android"
},
"private": true,
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@angular/cdk": "19.2.19",
"@angular/common": "19.2.17",
"@angular/core": "19.2.17",
"@angular/fire": "^19.2.0",
"@angular/forms": "19.2.17",
"@angular/platform-browser": "19.2.17",
"@angular/platform-browser-dynamic": "19.2.17",
"@angular/router": "19.2.17",
"@angular/service-worker": "19.2.17",
"@capacitor-community/speech-recognition": "^6.0.1",
"@capacitor-community/text-to-speech": "^5.0.0",
"@capacitor-firebase/messaging": "^6.1.0",
"@capacitor/android": "6.1.2",
"@capacitor/app": "^6.0.1",
"@capacitor/camera": "^6.0.2",
"@capacitor/clipboard": "^6.0.1",
"@capacitor/core": "^6.1.2",
"@capacitor/haptics": "^6.0.1",
"@capacitor/keyboard": "^6.0.2",
"@capacitor/local-notifications": "^6.1.0",
"@capacitor/preferences": "^6.0.3",
"@capacitor/push-notifications": "^6.0.2",
"@capacitor/status-bar": "^6.0.1",
"@google/generative-ai": "^0.21.0",
"@ionic/angular": "^8.3.3",
"@ionic/cli": "^7.2.0",
"@ionic/pwa-elements": "^3.3.0",
"@ionic/storage-angular": "^4.0.0",
"angular-google-tag-manager": "^1.11.0",
"chart.js": "^4.4.5",
"file-saver": "^2.0.5",
"http-server": "^14.1.1",
"ionicons": "^7.4.0",
"ng2-charts": "^6.0.1",
"rxfire": "^6.0.5",
"rxjs": "^7.8.1",
"tslib": "^2.8.0",
"xlsx": "^0.18.5",
"xlsx-style": "^0.8.13",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.19",
"@angular-eslint/eslint-plugin": "19.8.1",
"@angular-eslint/eslint-plugin-template": "19.8.1",
"@angular/cli": "^19.2.19",
"@angular/compiler": "^19.2.17",
"@angular/compiler-cli": "^19.2.17",
"@angular/language-service": "^19.2.17",
"@capacitor/cli": "^6.1.2",
"@ionic/angular-toolkit": "^12.2.0",
"@ionic/prettier-config": "^4.0.0",
"@types/file-saver": "2.0.7",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.7.7",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-prettier": "^5.2.1",
"gulp": "^5.0.0",
"gulp-gzip": "^1.4.2",
"gzipper": "^8.1.0",
"husky": "^9.1.6",
"jasmine-core": "^5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ts-node": "^10.9.2",
"typescript": "~5.6.2"
},
"description": "A project to help people manage Time, Money and resources.",
"browserslist": [
"Chrome >=61",
"Firefox >=63",
"Edge >=79",
"Safari >=13",
"iOS >=13"
]
}