-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@techmely/vue3-2024-project",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --mode development",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test:e2e": "playwright test",
"test:unit": "vitest run",
"test:unit:coverage": "vitest run --coverage",
"lint": "run-s lint:*",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix",
"upgrade.deps": "npm-check-updates --dep dev,prod,peer -u",
"format": "prettier --write src/",
"prepare": "husky"
},
"dependencies": {
"@playwright/test": "^1.49.0",
"@tanstack/vue-query": "5.60.6",
"@tanstack/vue-query-devtools": "5.60.6",
"@techmely/es-toolkit": "^1.3.1",
"@unovis/ts": "^1.5.0-beta.3",
"@unovis/vue": "^1.5.0-beta.3",
"@vee-validate/zod": "^4.14.7",
"@vueuse/core": "^11.3.0",
"ai": "^4.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"embla-carousel-vue": "^8.5.1",
"firebase": "^11.0.2",
"iconify-icon": "^2.1.0",
"ky": "^1.7.2",
"lucide-vue-next": "^0.460.0",
"pinia": "^2.2.6",
"radix-vue": "^1.9.10",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"v-calendar": "^3.1.2",
"vaul-vue": "^0.2.0",
"vee-validate": "^4.14.7",
"vue": "3.5.13",
"vue-router": "4.4.5",
"vue-sonner": "^1.3.0",
"wa-sqlite": "1.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "9.2.0",
"@rushstack/eslint-patch": "^1.10.4",
"@tanstack/eslint-plugin-query": "^5.60.1",
"@testing-library/jest-dom": "^6.6.3",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.9.3",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/coverage-v8": "^2.1.5",
"@vitejs/plugin-vue-jsx": "^4.1.0",
"@vitest/eslint-plugin": "1.1.10",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.6.0",
"autoprefixer": "^10.4.20",
"concurrently": "9.1.0",
"eslint": "^9.15.0",
"eslint-plugin-oxlint": "^0.13.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-vue": "^9.31.0",
"jsdom": "^25.0.1",
"npm-run-all2": "^7.0.1",
"oxlint": "^0.13.0",
"husky": "^9.1.7",
"lightningcss": "^1.28.1",
"msw": "^2.6.6",
"npm-check-updates": "^17.1.11",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2",
"unplugin-auto-import": "0.18.5",
"unplugin-vue-components": "0.27.4",
"unplugin-vue-router": "0.10.8",
"vite": "5.4.11",
"vite-plugin-compression2": "^1.3.1",
"vitest": "^2.1.5",
"vite-plugin-vue-devtools": "^7.6.4",
"vitest-axe": "^0.1.0",
"vitest-fetch-mock": "^0.4.2",
"vitest-mock-extended": "^2.0.2",
"vue-tsc": "2.1.10"
},
"engines": {
"node": ">=22"
},
"msw": {
"workerDirectory": [
"public"
]
}
}