-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) Β· 2.18 KB
/
package.json
File metadata and controls
76 lines (76 loc) Β· 2.18 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
{
"name": "hanaharmoney",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint src --ext .js,.ts,.tsx",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@chatscope/chat-ui-kit-react": "^2.1.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.9.0",
"@stomp/stompjs": "^7.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"firebase": "^12.2.1",
"lottie-react": "^2.4.1",
"lucide-react": "^0.540.0",
"next": "15.5.0",
"react": "19.1.0",
"react-daum-postcode": "^3.2.0",
"react-day-picker": "^9.9.0",
"react-dom": "19.1.0",
"react-hot-toast": "^2.6.0",
"react-kakao-maps-sdk": "^1.2.0",
"react-slick": "^0.31.0",
"react-speech-recognition": "^4.0.1",
"slick-carousel": "^1.8.1",
"sockjs-client": "^1.6.1",
"tailwind-merge": "^3.3.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-slick": "^0.23.13",
"@types/react-speech-recognition": "^3.9.6",
"@types/sockjs-client": "^1.5.4",
"eslint": "^9",
"eslint-config-next": "15.5.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"svgo": "^4.0.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.7",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json,yaml}": "prettier --write"
}
}