-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 KB
/
package.json
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
{
"name": "vite-vue3-template",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"check": "vue-tsc --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.mjs,.cjs,.ts,.tsx,.mts,.vue",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.1.1",
"@intlify/unplugin-vue-i18n": "^5.2.0",
"@tailwindcss/container-queries": "^0.1.1",
"@vee-validate/yup": "^4.12.4",
"@vueuse/components": "^9.13.0",
"@vueuse/core": "^9.10.0",
"@vueuse/head": "^1.1.26",
"@vueuse/integrations": "^9.13.0",
"dayjs": "^1.11.10",
"focus-trap": "^7.6.0",
"pinia": "^2.0.36",
"vee-validate": "^4.12.4",
"vue": "^3.4.8",
"vue-i18n": "^10.0.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/test-utils": "^2.4.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.28.0",
"jsdom": "^23.2.0",
"postcss": "^8.4.23",
"pre-commit": "^1.2.2",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.14",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"unplugin": "^1.14.1",
"vite": "^5.0.11",
"vite-plugin-sitemap": "^0.7.1",
"vitest": "^1.1.3",
"vue-tsc": "^1.8.27"
}
}