-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.87 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.87 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "wb-table",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"mock": "npx tsx watch ./src/mocks/http.ts"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"@tanstack/react-query": "^5.59.15",
"@tanstack/react-query-next-experimental": "^5.59.15",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"next": "^15.0.1",
"next-auth": "^5.0.0-beta.25",
"react": "19.0.0-rc-cae764ce-20241025",
"react-calendar": "^5.1.0",
"react-daum-postcode": "^3.1.3",
"react-dom": "19.0.0-rc-cae764ce-20241025",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"react-kakao-maps-sdk": "^1.1.27",
"react-toastify": "^11.0.2",
"sockjs-client": "^1.6.1",
"supports-color": "^10.0.0",
"tailwind-merge": "^2.5.4",
"zustand": "^5.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@mswjs/http-middleware": "^0.10.1",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-onboarding": "^8.3.6",
"@storybook/addons": "7.6.17",
"@storybook/blocks": "^8.3.6",
"@storybook/nextjs": "^8.3.6",
"@storybook/react": "^8.3.6",
"@storybook/test": "^8.3.6",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query-devtools": "^5.59.15",
"@types/cors": "^2",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/express": "^4",
"@types/lodash": "^4.17.13",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sockjs-client": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"cors": "^2.8.5",
"daisyui": "^4.12.13",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.10.1",
"express": "^4.21.1",
"msw": "^2.5.0",
"postcss": "^8",
"prettier": "^3.3.3",
"storybook": "^8.3.6",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"webpack": "^5.95.0"
},
"msw": {
"workerDirectory": [
"public"
]
},
"packageManager": "yarn@4.5.1",
"resolutions": {
"webpack": "^5.95.0"
}
}