-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.96 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.96 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
{
"name": "vaktiapp",
"version": "2.0.6",
"type": "module",
"engines": {
"node": "24.x",
"npm": "11.x"
},
"scripts": {
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -r 0 -s",
"dev": "vite --host",
"format": "prettier --write src/",
"build": "npm run type-check && npm run build-only",
"preview": "vite preview",
"test": "vitest run",
"test-watch": "vitest",
"test-e2e": "playwright test",
"test-e2e-debug": "playwright test --debug",
"test-cov": "vitest run --coverage",
"coverage-report": "vitest run --coverage --coverage.reporter=html",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"type-check-watch": "vue-tsc --build --watch",
"lint": "eslint . --max-warnings=0",
"lint-fix": "eslint . --fix --max-warnings=0",
"prepare": "husky install",
"update-readme-test-cov": "npm run test-cov && npm run make-badges",
"make-badges": "istanbul-badges-readme",
"make-badges:ci": "npm run make-badges -- --ci",
"checks": "npm run format && npm run lint && npm run test && npm run test-e2e && npm run build",
"sync-apps": "npx cap sync",
"build-android": "npx cap add android",
"build-ios": "npx cap add ios"
},
"dependencies": {
"@capacitor/android": "^7.4.0",
"@capacitor/core": "^7.4.0",
"@capacitor/ios": "^7.4.0",
"@capacitor/share": "^7.0.1",
"@capacitor/status-bar": "^7.0.1",
"@mdi/font": "^7.4.47",
"@vitest/eslint-plugin": "^1.1.24",
"@vueuse/core": "^13.4.0",
"adhan": "^4.4.3",
"eslint-plugin-playwright": "^2.2.2",
"pinia": "^3.0.3",
"vue": "^3.5.17",
"vuetify": "^3.8.11",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^7.4.0",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@playwright/test": "^1.55.0",
"@rushstack/eslint-patch": "^1.3.2",
"@tsconfig/node22": "^22.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@types/webfontloader": "^1.6.35",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"husky": "^8.0.3",
"istanbul-badges-readme": "^1.8.5",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"prettier": "^3.3.3",
"typescript": "^5.9.2",
"vite": "^6.3.4",
"vite-plugin-sitemap": "^0.8.2",
"vite-plugin-vuetify": "^2.0.4",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.10"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js,vue}": [
"prettier --write",
"eslint --max-warnings=0"
]
}
}