-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
64 lines (64 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
64
{
"name": "vite-ts-tailwind-starter",
"version": "8.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite build && vite preview",
"start": "pnpm dev & wait-on tcp:3000 -v",
"test": "vitest",
"test-e2e": "playwright test --headed",
"coverage": "vitest run --coverage",
"lint": "eslint . --fix",
"ts": "vue-tsc --build --force"
},
"dependencies": {
"@unhead/vue": "^2.0.8",
"pinia": "^3.0.2",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "^1.9.0",
"@iconify-json/mdi": "^1.2.3",
"@pinia/testing": "^1.0.1",
"@playwright/test": "^1.52.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.4",
"@tsconfig/node22": "^22.0.1",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/coverage-v8": "^3.1.2",
"@vitest/eslint-plugin": "^1.1.43",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"cssnano": "^7.0.6",
"eslint": "^9.25.1",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-vue": "^10.0.0",
"jsdom": "^26.1.0",
"lodash-es": "^4.17.21",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.4",
"typescript": "5.8.3",
"unplugin-auto-import": "^19.1.2",
"unplugin-vue-components": "^28.5.0",
"vite": "^6.3.2",
"vite-plugin-vue-devtools": "^7.7.5",
"vitest": "^3.1.2",
"vue-tsc": "^2.2.10",
"wait-on": "^8.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}