-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
109 lines (109 loc) · 3.46 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
103
104
105
106
107
108
109
{
"name": "everyone-garden",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install",
"lint-staged": "lint-staged",
"theme:watch": "chakra-cli tokens src/styles/theme.ts --watch"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.4",
"@stomp/stompjs": "^7.0.0",
"@storybook/icons": "^1.2.9",
"@tanstack/react-query": "^5.22.2",
"@tanstack/react-query-devtools": "^5.24.0",
"@tiptap/extension-bold": "^2.6.6",
"@tiptap/extension-document": "^2.6.6",
"@tiptap/extension-dropcursor": "^2.6.6",
"@tiptap/extension-heading": "^2.6.6",
"@tiptap/extension-history": "^2.6.6",
"@tiptap/extension-italic": "^2.6.6",
"@tiptap/extension-paragraph": "^2.6.6",
"@tiptap/extension-placeholder": "^2.6.6",
"@tiptap/extension-text": "^2.6.6",
"@tiptap/extension-underline": "^2.6.6",
"@tiptap/pm": "^2.6.6",
"@tiptap/react": "^2.6.6",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"dompurify": "^3.1.5",
"emotion-normalize": "^11.0.1",
"framer-motion": "^11.0.5",
"nanoid": "^5.0.6",
"react": "^18.2.0",
"react-daum-postcode": "^3.1.3",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-ga4": "^2.1.0",
"react-hook-form": "^7.50.1",
"react-naver-maps": "^0.1.3",
"react-number-format": "^5.4.0",
"react-router-dom": "^6.22.1",
"react-slick": "^0.30.2",
"recharts": "^2.12.6",
"slick-carousel": "^1.8.1",
"swiper": "^11.0.7",
"zod": "^3.22.4",
"zustand": "^4.5.1",
"zustand-persist": "^0.4.0"
},
"devDependencies": {
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/storybook-addon": "^5.1.0",
"@chromatic-com/storybook": "^1.3.3",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/addon-viewport": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/test": "^8.0.9",
"@tanstack/eslint-plugin-query": "^5.20.1",
"@types/dompurify": "^3.0.5",
"@types/navermaps": "^3.7.5",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"chromatic": "^11.0.0",
"commitlint-plugin-function-rules": "^2.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"msw": "^2.2.2",
"prettier": "3.2.5",
"storybook": "^8.0.9",
"typescript": "^5.2.2",
"vite": "^5.1.0",
"vite-plugin-svgr": "^4.2.0"
}
}