-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "qwixx",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": " vite",
"build": "npm run lint && npm run type-check && npm run build-only",
"build-only": "vite build",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"prepare": "husky",
"preview": "vite preview",
"test:unit": "vitest",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --max-warnings 0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "7.3.1",
"@tailwindcss/forms": "0.5.11",
"nosleep.js": "0.12.0",
"pinia": "3.0.4",
"pinia-plugin-persistedstate": "4.7.1",
"vue": "3.5.42",
"vue-final-modal": "4.5.5",
"vue-router": "5.3.1",
"vue-toast-notification": "3.1.3"
},
"devDependencies": {
"@tailwindcss/vite": "4.3.3",
"@tsconfig/node24": "24.0.5",
"@types/node": "24.13.4",
"@vitejs/plugin-vue": "6.0.8",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.9.0",
"@vue/tsconfig": "0.9.1",
"eslint": "10.10.0",
"eslint-plugin-vue": "10.11.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.9.6",
"tailwindcss": "4.3.3",
"typescript": "5.9.3",
"vite": "7.3.6",
"vite-plugin-vue-devtools": "8.2.1",
"vue-tsc": "3.3.11"
}
}