-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.15 KB
/
package.json
File metadata and controls
92 lines (92 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
{
"name": "react-handbook",
"version": "1.0.0",
"author": "misha98857",
"homepage": "https://github.com/misha98857/react-handbook",
"scripts": {
"ng": "ng",
"start": "ng serve --configuration=development",
"build": "ng build --configuration=production",
"sync": "ng build --configuration=production && npx ionic capacitor sync --configuration=production",
"android-studio": "npx cap open android",
"android:liveserver": "npx ionic cap run android -l --external",
"test": "ng test",
"lint": "ng lint",
"res": "capacitor-resources -p android",
"postinstall": "npx jetifier"
},
"private": true,
"dependencies": {
"@angular/common": "17.2.3",
"@angular/core": "17.2.3",
"@angular/forms": "17.2.3",
"@angular/platform-browser": "17.2.3",
"@angular/platform-browser-dynamic": "17.2.3",
"@angular/router": "17.2.3",
"@awesome-cordova-plugins/core": "6.6.0",
"@awesome-cordova-plugins/in-app-browser": "^6.6.0",
"@awesome-cordova-plugins/splash-screen": "6.6.0",
"@awesome-cordova-plugins/status-bar": "6.6.0",
"@capacitor-community/firebase-analytics": "5.0.1",
"@capacitor/android": "5.7.1",
"@capacitor/app": "5.0.7",
"@capacitor/cli": "^5.7.1",
"@capacitor/core": "5.7.1",
"@capacitor/device": "5.0.7",
"@capacitor/filesystem": "^5.2.1",
"@capacitor/haptics": "5.0.7",
"@capacitor/keyboard": "5.0.8",
"@capacitor/preferences": "5.0.7",
"@capacitor/push-notifications": "5.1.1",
"@capacitor/splash-screen": "5.0.7",
"@capacitor/status-bar": "5.0.7",
"@ionic/angular": "^7.7.3",
"@ngrx/signals": "^17.1.1",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@types/mark.js": "^8.11.12",
"cordova-plugin-inappbrowser": "^6.0.0",
"core-js": "3.36.0",
"mark.js": "8.11.1",
"prismjs": "1.29.0",
"rxjs": "7.8.1",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.2.2",
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "17.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "17.2.2",
"@angular/compiler": "17.2.3",
"@angular/compiler-cli": "17.2.3",
"@angular/language-service": "17.2.3",
"@babel/compat-data": "7.23.5",
"@ngrx/schematics": "17.1.1",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "2.0.13",
"@types/node": "20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"codelyzer": "6.0.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "5.1.2",
"jasmine-spec-reporter": "7.0.0",
"jetifier": "2.0.0",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"tslint": "6.1.3",
"typescript": "5.3.3"
}
}