-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.88 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
{
"name": "helmio",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Helmio - çok sunuculu Supervisor yönetim masaüstü uygulaması (Tauri + Vue + Vuetify)",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"prepare": "husky"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache --fix",
"*.{js,vue,json,md,yml,yaml,scss,css,html}": "prettier --write"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-http": "^2.5.9",
"@tauri-apps/plugin-log": "^2.9.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-sql": "^2",
"@tauri-apps/plugin-store": "^2",
"@tauri-apps/plugin-updater": "^2.10.1",
"pinia": "^2.3.0",
"vue": "^3.5.13",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0",
"vuetify": "^3.7.6"
},
"devDependencies": {
"@antfu/eslint-config": "^4.19.0",
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"happy-dom": "^15.11.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.0",
"vite": "^6.0.7",
"vite-plugin-vuetify": "^2.0.4",
"vitest": "^2.1.8"
}
}