-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.26 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "frontend-displayu",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.30.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"prettier:fix": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/aldrich": "^5.2.7",
"@hookform/resolvers": "^5.7.1",
"@tanstack/react-query": "^5.101.3",
"axios": "^1.18.1",
"clsx": "^2.1.1",
"lucide-react": "^1.23.0",
"pretendard": "^1.3.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.84.0",
"react-kakao-maps-sdk": "^1.2.1",
"react-router-dom": "^7.18.1",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.3.2",
"@tanstack/react-query-devtools": "^5.101.3",
"@types/node": "^22.10.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.7.0",
"husky": "^9",
"kakao.maps.d.ts": "^0.1.40",
"lint-staged": "^16.4.0",
"msw": "^2.15.0",
"prettier": "^3.8.5",
"tailwindcss": "^4.3.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.62.0",
"vite": "^5.4.1",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}