-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) Β· 1.91 KB
/
package.json
File metadata and controls
72 lines (72 loc) Β· 1.91 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"@tanstack/vue-query": "^5.83.0",
"@unovis/ts": "^1.5.2",
"@unovis/vue": "^1.5.2",
"@tanstack/vue-table": "^8.21.3",
"@vueuse/core": "^13.6.0",
"axios": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"firebase": "^12.1.0",
"lucide-vue-next": "^0.526.0",
"pinia": "^3.0.3",
"reka-ui": "^2.4.1",
"router": "^2.2.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.6",
"vaul-vue": "^0.4.1",
"vue": "^3.5.17",
"vue-router": "^4.5.1",
"vue-sonner": "^2.0.2",
"vue3-kakao-maps": "^2.3.10"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.6.1",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.16.5",
"@vitejs/plugin-vue": "^6.0.0",
"@vitest/eslint-plugin": "^1.2.7",
"@vue/eslint-config-typescript": "^14.5.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.29.0",
"eslint-plugin-vue": "~10.2.0",
"jiti": "^2.4.2",
"jsdom": "^26.1.0",
"msw": "^2.10.4",
"npm-run-all2": "^8.0.4",
"typescript": "~5.8.0",
"vite": "^7.0.0",
"vite-plugin-pwa": "^1.0.2",
"vite-plugin-vue-devtools": "^7.7.7",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.10"
},
"msw": {
"workerDirectory": [
"public"
]
}
}