-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
64
65
66
67
68
69
70
71
72
73
{
"name": "vite-ts-tailwind-starter",
"version": "6.0.0",
"type": "module",
"scripts": {
"dev": "cross-env DEBUG=0 vite",
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"preview": "vite build && vite preview",
"start": "pnpm dev & wait-on tcp:3000 -v",
"test": "vitest",
"coverage": "vitest run --coverage",
"test-e2e": "playwright test --headed",
"test:ci": "vitest run --coverage",
"test:ci-e2e": "playwright test",
"lint": "eslint . --fix",
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"@unhead/vue": "1.11.10",
"pinia": "2.2.4",
"vue": "3.5.12",
"vue-router": "4.4.5"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "1.8.1",
"@iconify/json": "2.2.263",
"@iconify/types": "2.0.0",
"@pinia/testing": "0.1.6",
"@playwright/test": "1.48.1",
"@rushstack/eslint-patch": "1.10.4",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.9",
"@tailwindcss/line-clamp": "0.4.4",
"@tailwindcss/typography": "0.5.15",
"@tsconfig/node20": "20.1.4",
"@types/jsdom": "21.1.7",
"@types/lodash-es": "4.17.12",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"@vitejs/plugin-vue": "5.1.4",
"@vitest/coverage-v8": "2.1.3",
"@vitest/eslint-plugin": "1.1.7",
"@vue/eslint-config-prettier": "10.1.0",
"@vue/eslint-config-typescript": "14.1.3",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.5.1",
"autoprefixer": "10.4.20",
"cross-env": "7.0.3",
"cssnano": "7.0.6",
"eslint": "9.14.0",
"eslint-plugin-playwright": "2.0.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-vue": "9.30.0",
"jsdom": "25.0.1",
"lodash-es": "4.17.21",
"npm-run-all2": "7.0.1",
"postcss": "8.4.47",
"postcss-import": "16.1.0",
"postcss-nesting": "13.0.1",
"prettier": "3.3.3",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"unplugin-auto-import": "0.18.3",
"unplugin-vue-components": "0.27.4",
"vite": "5.4.10",
"vite-plugin-vue-devtools": "7.6.2",
"vitest": "2.1.3",
"vue-tsc": "2.1.6",
"wait-on": "8.0.1"
}
}