-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.32 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.32 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
{
"name": "closer",
"version": "1.5.5",
"engines": {
"node": ">=18.15.0",
"pnpm": ">=8.6.3"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not IE 9-11",
"not kaios 2.5",
"not op_mini all"
],
"scripts": {
"postinstall": "if [ \"$HUSKY\" != 0 ]; then husky install; fi",
"ng": "ng",
"start": "ng serve",
"start:capacitor": "pnpm build && npx cap sync && pnpm start --host=0.0.0.0 --disable-host-check",
"android:open": "npx cap open android",
"build": "ng build",
"build:prod": "ng build --configuration production",
"eslint": "eslint --max-warnings=0 --fix",
"stylelint": "stylelint",
"prettier:check": "prettier --check",
"prettier:write": "prettier --write \"src/**/*.(html|scss|ts)\"",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org pakut2 --project closer ./dist && sentry-cli sourcemaps upload --org pakut2 --project closer ./dist"
},
"dependencies": {
"@angular/animations": "^16.1.0",
"@angular/cdk": "16.1.3",
"@angular/common": "^16.1.0",
"@angular/compiler": "^16.1.0",
"@angular/core": "^16.1.0",
"@angular/forms": "^16.1.0",
"@angular/material": "16.1.3",
"@angular/platform-browser": "^16.1.0",
"@angular/platform-browser-dynamic": "^16.1.0",
"@angular/router": "^16.1.0",
"@capacitor/android": "^5.2.1",
"@capacitor/angular": "2.0.3",
"@capacitor/app": "5.0.6",
"@capacitor/core": "5.2.1",
"@capacitor/geolocation": "5.0.6",
"@capacitor/haptics": "5.0.6",
"@capacitor/preferences": "5.0.6",
"@capacitor/push-notifications": "^5.0.6",
"@sentry/angular-ivy": "^7.61.0",
"latinize": "^0.5.0",
"luxon": "^3.3.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.0",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "~16.1.0",
"@angular/compiler-cli": "^16.1.0",
"@capacitor/assets": "^2.0.4",
"@capacitor/cli": "^5.2.2",
"@ngx-env/builder": "16.1.3",
"@sentry/cli": "^2.20.4",
"@total-typescript/ts-reset": "^0.4.2",
"@types/jasmine": "~4.3.0",
"@types/latinize": "^0.2.15",
"@types/luxon": "^3.3.0",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.0",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"stylelint": "^15.9.0",
"stylelint-config-standard-scss": "^9.0.0",
"typescript": "~5.1.3"
},
"lint-staged": {
"*.(html|scss|ts)": [
"pnpm prettier:check"
],
"*.(html|ts)": [
"pnpm eslint"
],
"*.scss": [
"pnpm stylelint"
]
}
}