-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.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
{
"name": "@domoticasw/client",
"version": "0.0.0",
"type": "module",
"license": "LGPL-3.0-only",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint .",
"lint-fix": "npm run lint --fix",
"format": "prettier --write src/",
"format-check": "prettier --check src/"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"daisyui": "^5.0.46",
"hex-rgb": "^5.0.0",
"pinia": "^2.3.1",
"rgb-hex": "^4.1.0",
"socket.io-client": "^4.8.1",
"tailwindcss": "^4.1.11",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"pinia-plugin-persistedstate": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.7",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.32.0",
"jiti": "^2.4.2",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"semantic-release-preconfigured-conventional-commits": "^1.1.122",
"typescript": "~5.7.3",
"vite": "^6.0.11",
"vite-plugin-vue-devtools": "^7.7.0",
"vue-tsc": "^2.2.0"
}
}