-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.51 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.51 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "wedding",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"format": "npx prettier --write .",
"postinstall": "npm install rollup @rollup/plugin-node-resolve @rollup/plugin-commonjs",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.4.12",
"@mui/x-date-pickers": "^8.7.0",
"@playwright/test": "^1.53.2",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@sentry/react": "^9.23.0",
"@sentry/tracing": "^7.120.3",
"@sentry/vite-plugin": "^3.5.0",
"@storybook/react-vite": "^9.0.16",
"@tanstack/react-query": "^5.64.2",
"@tanstack/react-query-devtools": "^5.64.2",
"@tiptap/extension-highlight": "^2.12.0",
"@tiptap/extension-underline": "^2.12.0",
"@tiptap/react": "^2.12.0",
"@tiptap/starter-kit": "^2.12.0",
"@types/dompurify": "^3.0.5",
"@types/react-slick": "^0.23.13",
"axios": "^1.7.9",
"boxicons": "^2.1.4",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.3",
"file-saver": "^2.0.5",
"flowbite": "^2.5.2",
"flowbite-react": "^0.10.2",
"flowbite-typography": "^1.0.5",
"framer-motion": "^12.16.0",
"isomorphic-dompurify": "^2.20.0",
"jsdom": "^26.0.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-datepicker": "^7.5.0",
"react-daum-postcode": "^3.1.3",
"react-day-picker": "^9.7.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.15.1",
"react-kakao-maps-sdk": "^1.1.27",
"react-quill": "^2.0.0",
"react-router": "^7.0.2",
"react-slick": "^0.30.3",
"react-toastify": "^11.0.0",
"rollup": "^4.44.2",
"slick-carousel": "^1.8.1",
"uuid": "^11.0.5",
"xlsx-js-style": "^1.2.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@storybook/addon-a11y": "^9.0.13",
"@storybook/addon-docs": "^9.0.13",
"@storybook/addon-postcss": "^2.0.0",
"@tailwindcss/typography": "^0.5.16",
"@types/file-saver": "^2.0.7",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.7",
"@types/react": "^18.3.12",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-datepicker": "^7.0.0",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-storybook": "^9.0.13",
"husky": "^9.1.7",
"kakao.maps.d.ts": "^0.1.40",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"storybook": "^9.0.12",
"tailwindcss": "^3.4.16",
"typescript": "~5.6.2",
"vite": "^6.0.1",
"vite-tsconfig-paths": "^5.1.4"
},
"optionalDependencies": {
"@esbuild/linux-x64": "0.24.0"
}
}