diff --git a/css/auth.css b/css/auth.css
new file mode 100644
index 00000000..03493c8c
--- /dev/null
+++ b/css/auth.css
@@ -0,0 +1,175 @@
+/* 로그인 & 회원가입 공통 화면 */
+.user_auth_page {
+ display: flex;
+ justify-content: start;
+ align-items: center;
+ flex-direction: column;
+ min-height: 100vh;
+}
+.user_auth_page .logo {
+ width: 396px;
+ height: 132px;
+ background: url('/img/login_signup_logo.png') no-repeat center / contain;
+ margin: 60px 0 40px;
+}
+.user_auth_page .user_auth_container {
+ max-width: 640px;
+ width: 100%;
+}
+.user_auth_page .input_wrap {
+ display: flex;
+ flex-direction: column;
+ gap: 16px;
+}
+.user_auth_page form label {
+ font-weight: 700;
+ font-size: 18px;
+ line-height: 26px;
+ color: var(--gray800);
+}
+.user_auth_page form input {
+ width: 100%;
+ height: 56px;
+ font-weight: 400;
+ font-size: 16px;
+ line-height: 56px;
+ color: var(--gray800);
+ padding: 0 24px;
+
+ background-color: var(--gray100);
+ border: none;
+ border-radius: 12px;
+}
+.user_auth_page form input::placeholder {color: var(--gray400);}
+.user_auth_page form input::-webkit-input-placeholder {color: var(--gray400);}
+.user_auth_page form input:-ms-input-placeholder {color: var(--gray400);}
+.user_auth_page form input.error {outline: none; border: 1px solid var(--red);}
+
+.user_auth_page form .input_box {
+ position: relative;
+}
+.user_auth_page form .eye_btn {
+ position: absolute;
+ top: 50%;
+ right: 24px;
+ transform: translateY(-50%);
+ width: 24px;
+ height: 24px;
+ background-image: url('/img/eye_off_ico.svg');
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: contain;
+}
+.user_auth_page form .eye_btn.active {
+ background-image: url('/img/eye_on_ico.svg');
+}
+.user_auth_page form .input_wrap + .input_wrap {
+ margin-top: 24px;
+}
+.user_auth_page form .btn {
+ width: 100%;
+ height: 56px;
+ font-weight: 600;
+ font-size: 20px;
+ line-height: 32px;
+ text-align: center;
+ color: var(--gray100);
+ margin-top: 24px;
+ background-color: var(--gray400);
+ border-radius: 40px;;
+}
+.user_auth_page form .btn.active {
+ background-color: var(--blue);
+}
+.user_auth_page .easy_signin_wrap {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ width: 100%;
+ height: 74px;
+ font-weight: 500;
+ font-size: 16px;
+ line-height: 26px;
+ color: var(--gray800);
+ padding: 24px 16px;
+ margin-top: 24px;
+ background-color: #E6F2FF;
+ border-radius: 8px;
+}
+.user_auth_page .easy_signin_btns {
+ display: flex;
+ gap: 16px;
+}
+.user_auth_page .easy_signin_btn {
+ display: flex;
+ gap: 16px;
+ width: 42px;
+ height: 42px;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: contain;
+}
+.user_auth_page .easy_signin_btn.google {
+ background-image: url('/img/login_google_ico.svg');
+}
+.user_auth_page .easy_signin_btn.kakao {
+background-image: url('/img/login_kakao_ico.svg');
+}
+.user_auth_page .go_to_signup, .user_auth_page .go_to_signin {
+ font-weight: 500;
+ font-size: 14px;
+ line-height: 24px;
+ text-align: center;
+ margin-top: 24px;
+}
+.user_auth_page .go_to_signup .signup_btn, .user_auth_page .go_to_signin .signin_btn {
+ color: var(--blue);
+ text-decoration: underline;
+ margin-left: 4px;
+}
+.user_auth_page .error_message {
+ display: none;
+ font-weight: 600;
+ font-size: 14px;
+ line-height: 24px;
+ color: var(--red);
+ margin-top: 8px;
+ padding-left: 16px;
+}
+.user_auth_page .error_message.active {
+ display: block;
+}
+
+@media (max-width: 1199px) {
+ .user_auth_page .user_auth_container {
+ padding: 0 52px;
+ }
+ .user_auth_page .logo {
+ margin: 48px 0 40px;
+ }
+}
+
+@media (max-width: 767px) {
+ .user_auth_page .user_auth_container {
+ max-width: 400px;
+ padding: 0 16px;
+ }
+ .user_auth_page .logo {
+ width: 198px;
+ height: 66px;
+ margin: 24px 0;
+ }
+ .user_auth_page form .input_wrap + .input_wrap {
+ margin-top: 16px;
+ }
+ .user_auth_page .input_wrap {
+ gap: 8px;
+ }
+ .user_auth_page form label{
+ font-size: 14px;
+ line-height: 24px;
+ }
+ .user_auth_page form .btn {
+ margin-top: 16px;
+ }
+}
\ No newline at end of file
diff --git a/css/global.css b/css/global.css
new file mode 100644
index 00000000..fcf211a1
--- /dev/null
+++ b/css/global.css
@@ -0,0 +1,155 @@
+/* :root에 컬러 & 기본 값 변수 세팅 */
+:root {
+ --red: #F74747;
+ --blue: #3692FF;
+ --white: #FFF;
+ --gray900: #111827;
+ --gray800: #1F2937;
+ --gray700: #374151;
+ --gray600: #4B5563;
+ --gray500: #6B7280;
+ --gray400: #9CA3AF;
+ --gray200: #E5E7EB;
+ --gray100: #F3F4F6;
+ --gray50: #F9FAFB;
+}
+
+body {
+ font-family: "Pretendard", sans-serif;
+}
+
+header {
+ position: sticky;
+ top: 0;
+ height: 70px;
+ background-color: var(--white);
+ border-bottom: 1px solid #DFDFDF;
+}
+header .container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1920px;
+ width: 100%;
+ height: 100%;
+ margin: 0 auto;
+ padding: 0 200px;
+}
+header .logo img {
+ width: 153px;
+}
+header .logo img.mo_img {
+ display: none;
+}
+header .login_btn {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 128px;
+ height: 48px;
+ font-size: 16px;
+ font-weight: 600;
+ color: var(--gray100);
+ border-radius: 8px;
+ background-color: var(--blue);
+}
+
+footer {
+ width: 100%;
+ padding: 32px 32px 108px;
+ background-color: var(--gray900);
+}
+footer .container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1120px;
+ margin: 0 auto;
+}
+footer .copyright {
+ font-weight: 400;
+ font-size: 16px;
+ line-height: 100%;
+ color: var(--gray400);
+ text-align: center;
+}
+footer .popup_box {
+ display: flex;
+ gap: 30px;
+}
+footer .popup_box a {
+ font-weight: 400;
+ font-size: 16px;
+ line-height: 100%;
+ color: var(--gray200);
+}
+footer .link_box {
+ display: flex;
+ gap: 12px;
+}
+footer .link_box a {
+ width: 20px;
+ height: 20px;
+ background-repeat: no-repeat;
+ background-size: contain;
+ background-position: center;
+}
+footer .link_box a.facebook {
+ background-image: url('/img/facebook_ico.svg');
+}
+footer .link_box a.twitter {
+ background-image: url('/img/twitter_ico.svg');
+}
+footer .link_box a.insta {
+ background-image: url('/img/insta_ico.svg');
+}
+footer .link_box a.youtube {
+ background-image: url('/img/youtube_ico.svg');
+}
+
+@media (max-width: 1199px) {
+ header .container {
+ padding: 0 24px;
+ }
+
+ footer .container {
+ max-width: 536px;
+ }
+ footer .copyright {
+ color: var(--gray200);
+ }
+}
+
+@media (max-width: 767px) {
+ header .container {
+ padding: 0 16px;
+ }
+ header .logo img.pc_img {
+ display: none;
+ }
+ header .logo img.mo_img {
+ display: block;
+ width: 103px;
+ }
+
+ footer {
+ padding: 32px 32px 30px;
+ }
+ footer .container {
+ flex-wrap: wrap;
+ justify-content: space-between;
+ gap: 59px 0;
+ max-width: none;
+ }
+ footer .copyright {
+ order: 3;
+ width: 100%;
+ text-align: left;
+ }
+ footer .popup_box {
+ order: 1;
+ }
+ footer .link_box {
+ order: 2;
+ }
+}
\ No newline at end of file
diff --git a/css/home.css b/css/home.css
new file mode 100644
index 00000000..70a94080
--- /dev/null
+++ b/css/home.css
@@ -0,0 +1,209 @@
+section {
+ word-break: keep-all;
+ overflow: hidden;
+}
+section .inner {
+ max-width: 1920px;
+ width: 100%;
+ padding: 0 20px;
+ margin: 0 auto;
+}
+section .section_title {
+ font-weight: 700;
+ font-size: 40px;
+ line-height: 140%;
+ margin-bottom: 24px;
+}
+section .section_category {
+ font-weight: 800;
+ font-size: 18px;
+ line-height: 26px;
+ color: var(--blue);
+ margin-bottom: 12px;
+}
+section .section_desc {
+ font-weight: 500;
+ font-size: 24px;
+ line-height: 32px;
+}
+section .section_img img {
+ height: 444px;
+}
+
+.section_banner {
+ padding-top: 200px;
+ background-color: #CFE5FF;
+}
+.section_banner .inner {
+ padding: 0;
+}
+.section_banner .content_box {
+ max-width: 1150px;
+ height: 340px;
+ padding: 0 20px;
+ margin: 0 auto;
+ background: url('/img/banner_img.png') no-repeat center right / auto 100%;
+}
+.section_banner .content_box .section_title {
+ max-width: 12ch;
+ padding-top: 40px;
+ margin-bottom: 32px;
+}
+.section_banner .content_box .click_to_items {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 357px;
+ height: 56px;
+ font-weight: 600;
+ font-size: 20px;
+ line-height: 32px;
+ text-align: center;
+ color: var(--gray50);
+ border-radius: 40px;
+ background-color: var(--blue);
+}
+
+.section_items .inner, .section_search .inner, .section_register .inner {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 64px;
+ max-width: 988px;
+ padding: 138px 0;
+}
+.section_search .inner .section_txt {
+ text-align: right;
+}
+
+.section_bottom .content_box {
+ background: url('/img/banner_img_02.png') no-repeat center right / auto 100%;
+}
+.section_bottom .content_box .section_title {
+ padding-top: 122px;
+ margin-bottom: 0;
+}
+
+@media (max-width: 1199px) {
+ .section_banner {
+ padding-top: 84px;
+ }
+ .section_banner .content_box {
+ max-width: none;
+ height: 687px;
+ background-position: bottom;
+ background-size: 100% auto;
+ }
+ .section_banner .content_box .section_title {
+ max-width: 100%;
+ font-size: 40px;
+ line-height: 140%;
+ text-align: center;
+ padding-top: 0;
+ margin-bottom: 24px;
+ }
+ .section_banner .content_box .click_to_items {
+ margin: 0 auto;
+ }
+
+ .section_items .inner, .section_search .inner, .section_register .inner {
+ flex-direction: column;
+ align-items: start;
+ gap: 24px;
+ max-width: none;
+ padding: 24px 24px 28px;
+ }
+ .section_register .inner {
+ padding-bottom: 56px;
+ }
+ .section_search .inner {
+ align-items: end;
+ }
+ section .section_img img {
+ height: auto;
+ }
+ section .section_category {
+ margin-bottom: 16px;
+ }
+ section .section_title {
+ font-size: 32px;
+ line-height: 42px;
+ }
+ section .section_title br {
+ display: none;
+ }
+ section .section_desc {
+ font-size: 18px;
+ line-height: 26px;
+ }
+ section .section_category {
+ order: 1;
+ }
+ section .section_txt {
+ order: 2;
+ }
+
+ .section_bottom {
+ padding-top: 201px;
+ }
+ .section_bottom .content_box {
+ height: 726px;
+ }
+ .section_bottom .content_box .section_title {
+ max-width: 12ch;
+ margin: 0 auto;
+ }
+}
+
+@media (max-width: 767px) {
+ .section_banner {
+ padding-top: 48px;
+ }
+ .section_banner .content_box {
+ height: 492px;
+ }
+ .section_banner .content_box .section_title {
+ font-size: 32px;
+ line-height: 140%;
+ max-width: 12ch;
+ margin: 0 auto 18px;
+ }
+ .section_banner .content_box .click_to_items {
+ width: 240px;
+ height: 48px;
+ font-size: 18px;
+ line-height: 26px;
+ }
+
+ .section_items .inner, .section_search .inner, .section_register .inner {
+ padding: 20px 15px;
+ }
+ .section_items .inner {
+ padding-top: 52px;
+ }
+ .section_register .inner {
+ padding-bottom: 83px;
+ }
+ section .section_category {
+ font-size: 16px;
+ margin-bottom: 8px;
+ }
+ section .section_title {
+ font-size: 24px;
+ line-height: 32px;
+ margin-bottom: 16px;
+ }
+ .section .section_desc {
+ font-size: 16px;
+ }
+
+ .section_bottom {
+ padding-top: 121px;
+ }
+ .section_bottom .content_box .section_title {
+ margin-bottom: 0;
+ }
+ .section_banner .content_box {
+ height: 419px;
+ }
+}
\ No newline at end of file
diff --git a/css/reset.css b/css/reset.css
new file mode 100644
index 00000000..01115d2e
--- /dev/null
+++ b/css/reset.css
@@ -0,0 +1 @@
+@charset "utf-8";*,::after,::before,button{margin:0;padding:0}*,::after,::before,button,h1,h2,h3,h4,h5,h6,input,select,table,textarea{box-sizing:border-box}article,aside,canvas,details,figcaption,figure,footer,header,mark,menu,nav,section,summary{display:block}button,input,select,textarea{background-color:#fff;border-radius:0;-webkit-appearance:none}a:focus,button,fieldset,iframe,img{border:0}li{list-style:none}button,img,input,select,textarea{vertical-align:middle}img{max-width:100%;height:auto}address,em,optgroup{font-style:normal}button,label{cursor:pointer}label{position:relative}button{background:0 0}a{text-decoration:none;color:inherit}a:focus{outline:0}caption,legend{font-size:0;width:0;height:0;line-height:0;overflow:hidden;text-indent:-9999px}table{width:100%;border-spacing:0}
\ No newline at end of file
diff --git a/img/banner_img.png b/img/banner_img.png
new file mode 100644
index 00000000..d5fd7707
Binary files /dev/null and b/img/banner_img.png differ
diff --git a/img/banner_img_02.png b/img/banner_img_02.png
new file mode 100644
index 00000000..43a347e1
Binary files /dev/null and b/img/banner_img_02.png differ
diff --git a/img/eye_off_ico.svg b/img/eye_off_ico.svg
new file mode 100644
index 00000000..45ad6232
--- /dev/null
+++ b/img/eye_off_ico.svg
@@ -0,0 +1,3 @@
+
diff --git a/img/eye_on_ico.svg b/img/eye_on_ico.svg
new file mode 100644
index 00000000..35a75305
--- /dev/null
+++ b/img/eye_on_ico.svg
@@ -0,0 +1,3 @@
+
diff --git a/img/facebook_ico.svg b/img/facebook_ico.svg
new file mode 100644
index 00000000..8491c2f8
--- /dev/null
+++ b/img/facebook_ico.svg
@@ -0,0 +1,3 @@
+
diff --git a/img/favicon.png b/img/favicon.png
new file mode 100644
index 00000000..269b1d28
Binary files /dev/null and b/img/favicon.png differ
diff --git a/img/insta_ico.svg b/img/insta_ico.svg
new file mode 100644
index 00000000..c83306f8
--- /dev/null
+++ b/img/insta_ico.svg
@@ -0,0 +1,3 @@
+
diff --git a/img/item_img.png b/img/item_img.png
new file mode 100644
index 00000000..2c939041
Binary files /dev/null and b/img/item_img.png differ
diff --git a/img/login_google_ico.svg b/img/login_google_ico.svg
new file mode 100644
index 00000000..4f72d8b8
--- /dev/null
+++ b/img/login_google_ico.svg
@@ -0,0 +1,10 @@
+
diff --git a/img/login_kakao_ico.svg b/img/login_kakao_ico.svg
new file mode 100644
index 00000000..09fae80e
--- /dev/null
+++ b/img/login_kakao_ico.svg
@@ -0,0 +1,12 @@
+
diff --git a/img/login_signup_logo.png b/img/login_signup_logo.png
new file mode 100644
index 00000000..57f5791c
Binary files /dev/null and b/img/login_signup_logo.png differ
diff --git a/img/logo.png b/img/logo.png
new file mode 100644
index 00000000..95b51fa8
Binary files /dev/null and b/img/logo.png differ
diff --git a/img/logo_mo.png b/img/logo_mo.png
new file mode 100644
index 00000000..7e94a17d
Binary files /dev/null and b/img/logo_mo.png differ
diff --git a/img/og_image.png b/img/og_image.png
new file mode 100644
index 00000000..d9def111
Binary files /dev/null and b/img/og_image.png differ
diff --git a/img/register_img.png b/img/register_img.png
new file mode 100644
index 00000000..8c6575ac
Binary files /dev/null and b/img/register_img.png differ
diff --git a/img/search_img.png b/img/search_img.png
new file mode 100644
index 00000000..42ebecf3
Binary files /dev/null and b/img/search_img.png differ
diff --git a/img/twitter_ico.svg b/img/twitter_ico.svg
new file mode 100644
index 00000000..14a6069a
--- /dev/null
+++ b/img/twitter_ico.svg
@@ -0,0 +1,3 @@
+
diff --git a/img/youtube_ico.svg b/img/youtube_ico.svg
new file mode 100644
index 00000000..beffba93
--- /dev/null
+++ b/img/youtube_ico.svg
@@ -0,0 +1,3 @@
+
diff --git a/index.html b/index.html
new file mode 100644
index 00000000..e313be1a
--- /dev/null
+++ b/index.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+ 판다마켓
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
일상의 모든 물건을 거래해 보세요
+
구경하러 가기
+
+
+
+
+
+
+
+
Hot item
+
인기 상품을
확인해 보세요
+
가장 HOT한 중고거래 물품을
판다 마켓에서 확인해 보세요
+
+
+
+
+
+
+
Search
+
구매를 원하는
상품을 검색하세요
+
구매하고 싶은 물품은 검색해서
쉽게 찾아보세요
+
+
+
+
+
+
+
+
+
Register
+
판매를 원하는
상품을 등록하세요
+
어떤 물건이든 판매하고 싶은 상품을
쉽게 등록하세요
+
+
+
+
+
+
+
믿을 수 있는 판다마켓 중고 거래
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/items.html b/items.html
new file mode 100644
index 00000000..d4364648
--- /dev/null
+++ b/items.html
@@ -0,0 +1,61 @@
+
+
+
+
+
+ 판다마켓
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/js/auth.js b/js/auth.js
new file mode 100644
index 00000000..15405849
--- /dev/null
+++ b/js/auth.js
@@ -0,0 +1,186 @@
+import { validateEmail, validatePassword, validateNickname, validatePasswordVerify } from './validation.js';
+
+// 공통 에러 표시 함수
+function showError(element, message) {
+ const errorInput = element.closest('input');
+ errorInput.classList.add('error');
+ const errorMessage = element.closest('.input_wrap').querySelector('.error_message');
+ errorMessage.textContent = message;
+ errorMessage.classList.add('active');
+}
+
+function hideError(element) {
+ const errorInput = element.closest('input');
+ errorInput.classList.remove('error');
+ const errorMessage = element.closest('.input_wrap').querySelector('.error_message');
+ errorMessage.classList.remove('active');
+ errorMessage.textContent = '';
+}
+
+const signinForm = document.querySelector('#formSignin');
+
+if(signinForm) {
+ // signin 로그인 페이지
+ const signinEmail = signinForm.querySelector('#userEmail');
+ const signinPassword = signinForm.querySelector('#userPassword');
+ const signinFormBtn = signinForm.querySelector('.signin_btn');
+
+ let isEmailValid = false;
+ let isPasswordValid = false;
+
+ signinEmail.addEventListener('focusout', (e) => {
+ const { valid, message } = validateEmail(e.target.value);
+
+ if (!valid) {
+ showError(e.target, message);
+ } else {
+ hideError(e.target);
+ }
+ isEmailValid = valid;
+ checkFormValidity();
+ });
+
+ signinPassword.addEventListener('focusout', (e) => {
+ const { valid, message } = validatePassword(e.target.value);
+
+ if (!valid) {
+ showError(e.target, message);
+ } else {
+ hideError(e.target);
+ }
+ isPasswordValid = valid;
+ checkFormValidity();
+ });
+
+ // 로그인 폼 유효성 검사 체크
+ function checkFormValidity() {
+ if (isEmailValid && isPasswordValid) toggleButtonState(signinFormBtn, true);
+ else toggleButtonState(signinFormBtn, false);
+ }
+
+ // 클릭 이벤트는 한 번만 등록
+ signinFormBtn.addEventListener('click', (event) => {
+ event.preventDefault();
+ if (signinFormBtn.classList.contains('active')) {
+ window.location.href = '/items';
+ }
+ });
+}
+
+const signupForm = document.querySelector('#formSignup');
+
+if(signupForm) {
+ // signup 회원가입 페이지
+ const signupEmail = signupForm.querySelector('#userEmail');
+ const signupNickname = signupForm.querySelector('#userNickname');
+ const signupPassword = signupForm.querySelector('#userPassword');
+ const signupPasswordVerify = signupForm.querySelector('#userPasswordVerify');
+ const signupFormBtn = signupForm.querySelector('.signup_btn');
+
+ let isEmailValid = false;
+ let isNicknameValid = false;
+ let isPasswordValid = false;
+ let isPasswordValidVerify = false;
+
+ signupEmail.addEventListener('focusout', (e) => {
+ const { valid, message } = validateEmail(e.target.value);
+
+ if (!valid) {
+ showError(e.target, message);
+ } else {
+ hideError(e.target);
+ }
+ isEmailValid = valid;
+ checkFormValidity();
+ });
+
+ signupNickname.addEventListener('focusout', (e) => {
+ const { valid, message } = validateNickname(e.target.value);
+
+ if (!valid) {
+ showError(e.target, message);
+ } else {
+ hideError(e.target);
+ }
+ isNicknameValid = valid;
+ checkFormValidity();
+ });
+
+ signupPassword.addEventListener('focusout', (e) => {
+ const { valid, message } = validatePassword(e.target.value);
+
+ if (!valid) {
+ showError(e.target, message);
+ } else {
+ hideError(e.target);
+ }
+
+ // 비밀번호 확인을 먼저 입력하거나 비밀번호를 수정할 경우
+ if(signupPasswordVerify.value !== '') {
+ const { valid, message } = validatePasswordVerify(signupPasswordVerify.value, e.target.value);
+
+ if(!valid) {
+ showError(signupPasswordVerify, message);
+ } else {
+ hideError(signupPasswordVerify);
+ }
+ isPasswordValidVerify = valid;
+ }
+
+ isPasswordValid = valid;
+ checkFormValidity();
+ });
+
+ signupPasswordVerify.addEventListener('focusout', (e) => {
+ const { valid, message } = validatePasswordVerify(e.target.value, signupPassword.value);
+
+ if (!valid) {
+ showError(e.target, message);
+ }
+ else {
+ hideError(e.target);
+ }
+ isPasswordValidVerify = valid;
+ checkFormValidity();
+ });
+
+ // 회원가입 폼 유효성 검사 체크
+ function checkFormValidity() {
+ if (isEmailValid && isNicknameValid && isPasswordValid && isPasswordValidVerify) {
+ toggleButtonState(signupFormBtn, true);
+ }
+ else toggleButtonState(signupFormBtn, false);
+ }
+
+ // 클릭 이벤트는 한 번만 등록
+ signupFormBtn.addEventListener('click', (event) => {
+ event.preventDefault();
+ if (signupFormBtn.classList.contains('active')) {
+ window.location.href = '/signin';
+ }
+ });
+}
+
+// 로그인 & 회원가입 버튼 상태 토글
+function toggleButtonState(button, isActive) {
+ if (isActive) {
+ button.removeAttribute('disabled');
+ button.classList.add('active');
+ } else {
+ button.setAttribute('disabled', 'true');
+ button.classList.remove('active');
+ }
+}
+
+// 비밀번호 보안 표시 토글
+document.querySelectorAll('.eye_btn').forEach((btn) => {
+ btn.addEventListener('click', (e) => {
+ if(!e.target.classList.contains('active')) {
+ e.target.classList.add('active');
+ e.target.previousElementSibling.setAttribute('type', 'text');
+ } else {
+ e.target.classList.remove('active');
+ e.target.previousElementSibling.setAttribute('type', 'password');
+ }
+ });
+});
\ No newline at end of file
diff --git a/js/validation.js b/js/validation.js
new file mode 100644
index 00000000..14c642d3
--- /dev/null
+++ b/js/validation.js
@@ -0,0 +1,52 @@
+// validation.js
+
+// 이메일 검사
+export function validateEmail(value) {
+ const emailRegex = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/i;
+ const v = (value ?? '').trim();
+
+ if (!v) {
+ return { valid: false, message: '이메일을 입력해주세요.' };
+ } else if (!emailRegex.test(value)) {
+ return { valid: false, message: '잘못된 이메일 형식입니다.' };
+ } else {
+ return { valid: true, message: '' };
+ }
+}
+
+// 비밀번호 검사
+export function validatePassword(value) {
+ const v = (value ?? '').trim();
+
+ if (!v) {
+ return { valid: false, message: '비밀번호를 입력해주세요.' };
+ } else if (value.length < 8) {
+ return { valid: false, message: '비밀번호를 8자 이상 입력해주세요.' };
+ } else {
+ return { valid: true, message: '' };
+ }
+}
+
+// 닉네임 검사
+export function validateNickname(value) {
+ const v = (value ?? '').trim();
+
+ if (!v) {
+ return { valid: false, message: '닉네임을 입력해주세요.' };
+ } else {
+ return { valid: true, message: '' };
+ }
+}
+
+// 비밀번호 일치 검사
+export function validatePasswordVerify(value, originalPassword) {
+ const v = (value ?? '').trim();
+
+ if (!v) {
+ return { valid: false, message: '비밀번호 확인을 입력해주세요.' };
+ } else if (value !== originalPassword) {
+ return { valid: false, message: '비밀번호가 일치하지 않습니다.' };
+ } else {
+ return { valid: true, message: '' };
+ }
+}
\ No newline at end of file
diff --git a/react-project/.gitignore b/react-project/.gitignore
new file mode 100644
index 00000000..a547bf36
--- /dev/null
+++ b/react-project/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/react-project/README.md b/react-project/README.md
new file mode 100644
index 00000000..7059a962
--- /dev/null
+++ b/react-project/README.md
@@ -0,0 +1,12 @@
+# React + Vite
+
+This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
+
+Currently, two official plugins are available:
+
+- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh
+- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
+
+## Expanding the ESLint configuration
+
+If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
diff --git a/react-project/eslint.config.js b/react-project/eslint.config.js
new file mode 100644
index 00000000..ec2b712d
--- /dev/null
+++ b/react-project/eslint.config.js
@@ -0,0 +1,33 @@
+import js from '@eslint/js'
+import globals from 'globals'
+import reactHooks from 'eslint-plugin-react-hooks'
+import reactRefresh from 'eslint-plugin-react-refresh'
+
+export default [
+ { ignores: ['dist'] },
+ {
+ files: ['**/*.{js,jsx}'],
+ languageOptions: {
+ ecmaVersion: 2020,
+ globals: globals.browser,
+ parserOptions: {
+ ecmaVersion: 'latest',
+ ecmaFeatures: { jsx: true },
+ sourceType: 'module',
+ },
+ },
+ plugins: {
+ 'react-hooks': reactHooks,
+ 'react-refresh': reactRefresh,
+ },
+ rules: {
+ ...js.configs.recommended.rules,
+ ...reactHooks.configs.recommended.rules,
+ 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
+ 'react-refresh/only-export-components': [
+ 'warn',
+ { allowConstantExport: true },
+ ],
+ },
+ },
+]
diff --git a/react-project/index.html b/react-project/index.html
new file mode 100644
index 00000000..106f858d
--- /dev/null
+++ b/react-project/index.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+ 판다마켓
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/react-project/package-lock.json b/react-project/package-lock.json
new file mode 100644
index 00000000..c11188fb
--- /dev/null
+++ b/react-project/package-lock.json
@@ -0,0 +1,3312 @@
+{
+ "name": "react-project",
+ "version": "0.0.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "react-project",
+ "version": "0.0.0",
+ "dependencies": {
+ "axios": "^1.9.0",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0",
+ "react-router-dom": "^7.9.6",
+ "styled-components": "^6.1.19"
+ },
+ "devDependencies": {
+ "@eslint/js": "^9.22.0",
+ "@types/react": "^19.0.10",
+ "@types/react-dom": "^19.0.4",
+ "@vitejs/plugin-react": "^4.3.4",
+ "eslint": "^9.22.0",
+ "eslint-plugin-react-hooks": "^5.2.0",
+ "eslint-plugin-react-refresh": "^0.4.19",
+ "globals": "^16.0.0",
+ "vite": "^6.3.1"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
+ "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
+ "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.28.5",
+ "@babel/helper-compilation-targets": "^7.27.2",
+ "@babel/helper-module-transforms": "^7.28.3",
+ "@babel/helpers": "^7.28.4",
+ "@babel/parser": "^7.28.5",
+ "@babel/template": "^7.27.2",
+ "@babel/traverse": "^7.28.5",
+ "@babel/types": "^7.28.5",
+ "@jridgewell/remapping": "^2.3.5",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
+ "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.28.5",
+ "@babel/types": "^7.28.5",
+ "@jridgewell/gen-mapping": "^0.3.12",
+ "@jridgewell/trace-mapping": "^0.3.28",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.27.2",
+ "@babel/helper-validator-option": "^7.27.1",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-globals": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.27.1",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.28.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
+ "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "@babel/traverse": "^7.28.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-plugin-utils": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
+ "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.28.4",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
+ "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.28.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
+ "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.28.5"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/parser": "^7.27.2",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
+ "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.28.5",
+ "@babel/helper-globals": "^7.28.0",
+ "@babel/parser": "^7.28.5",
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.28.5",
+ "debug": "^4.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
+ "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.28.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@emotion/is-prop-valid": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz",
+ "integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==",
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/memoize": "^0.8.1"
+ }
+ },
+ "node_modules/@emotion/memoize": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz",
+ "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/unitless": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz",
+ "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==",
+ "license": "MIT"
+ },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
+ "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
+ "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
+ "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
+ "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
+ "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
+ "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
+ "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
+ "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
+ "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
+ "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
+ "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
+ "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
+ "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
+ "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
+ "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
+ "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
+ "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
+ "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
+ "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
+ "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
+ "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
+ "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
+ "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
+ "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@eslint-community/eslint-utils": {
+ "version": "4.9.0",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz",
+ "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^3.4.3"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
+ }
+ },
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint-community/regexpp": {
+ "version": "4.12.2",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@eslint/config-array": {
+ "version": "0.21.1",
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
+ "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@eslint/object-schema": "^2.1.7",
+ "debug": "^4.3.1",
+ "minimatch": "^3.1.2"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/config-helpers": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
+ "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@eslint/core": "^0.17.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/core": {
+ "version": "0.17.0",
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
+ "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@types/json-schema": "^7.0.15"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/eslintrc": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
+ "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^10.0.1",
+ "globals": "^14.0.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.1",
+ "minimatch": "^3.1.2",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
+ "version": "14.0.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
+ "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@eslint/js": {
+ "version": "9.39.1",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz",
+ "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://eslint.org/donate"
+ }
+ },
+ "node_modules/@eslint/object-schema": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
+ "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/plugin-kit": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
+ "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@eslint/core": "^0.17.0",
+ "levn": "^0.4.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@humanfs/core": {
+ "version": "0.19.1",
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
+ "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanfs/node": {
+ "version": "0.16.7",
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
+ "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@humanfs/core": "^0.19.1",
+ "@humanwhocodes/retry": "^0.4.0"
+ },
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanwhocodes/module-importer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=12.22"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@humanwhocodes/retry": {
+ "version": "0.4.3",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=18.18"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/remapping": {
+ "version": "2.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.31",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@rolldown/pluginutils": {
+ "version": "1.0.0-beta.27",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
+ "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz",
+ "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz",
+ "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz",
+ "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz",
+ "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz",
+ "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz",
+ "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz",
+ "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz",
+ "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz",
+ "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz",
+ "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz",
+ "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz",
+ "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz",
+ "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz",
+ "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz",
+ "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz",
+ "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz",
+ "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-openharmony-arm64": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz",
+ "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz",
+ "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz",
+ "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz",
+ "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz",
+ "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@types/babel__core": {
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.20.7",
+ "@babel/types": "^7.20.7",
+ "@types/babel__generator": "*",
+ "@types/babel__template": "*",
+ "@types/babel__traverse": "*"
+ }
+ },
+ "node_modules/@types/babel__generator": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "node_modules/@types/babel__template": {
+ "version": "7.4.4",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "node_modules/@types/babel__traverse": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.28.2"
+ }
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/json-schema": {
+ "version": "7.0.15",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/react": {
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
+ "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "csstype": "^3.2.2"
+ }
+ },
+ "node_modules/@types/react-dom": {
+ "version": "19.2.3",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "^19.2.0"
+ }
+ },
+ "node_modules/@types/stylis": {
+ "version": "4.2.5",
+ "resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.5.tgz",
+ "integrity": "sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==",
+ "license": "MIT"
+ },
+ "node_modules/@vitejs/plugin-react": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
+ "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.28.0",
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
+ "@rolldown/pluginutils": "1.0.0-beta.27",
+ "@types/babel__core": "^7.20.5",
+ "react-refresh": "^0.17.0"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
+ }
+ },
+ "node_modules/acorn": {
+ "version": "8.15.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true,
+ "license": "Python-2.0"
+ },
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
+ "license": "MIT"
+ },
+ "node_modules/axios": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.9.0.tgz",
+ "integrity": "sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==",
+ "license": "MIT",
+ "dependencies": {
+ "follow-redirects": "^1.15.6",
+ "form-data": "^4.0.0",
+ "proxy-from-env": "^1.1.0"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/baseline-browser-mapping": {
+ "version": "2.8.32",
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.32.tgz",
+ "integrity": "sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "bin": {
+ "baseline-browser-mapping": "dist/cli.js"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.28.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz",
+ "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "baseline-browser-mapping": "^2.8.25",
+ "caniuse-lite": "^1.0.30001754",
+ "electron-to-chromium": "^1.5.249",
+ "node-releases": "^2.0.27",
+ "update-browserslist-db": "^1.1.4"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/camelize": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz",
+ "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001757",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001757.tgz",
+ "integrity": "sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+ },
+ "node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "license": "MIT",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cookie": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/css-color-keywords": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz",
+ "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/css-to-react-native": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz",
+ "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==",
+ "license": "MIT",
+ "dependencies": {
+ "camelize": "^1.0.0",
+ "css-color-keywords": "^1.0.0",
+ "postcss-value-parser": "^4.0.2"
+ }
+ },
+ "node_modules/csstype": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/debug": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.263",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.263.tgz",
+ "integrity": "sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-set-tostringtag": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/esbuild": {
+ "version": "0.25.12",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
+ "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.25.12",
+ "@esbuild/android-arm": "0.25.12",
+ "@esbuild/android-arm64": "0.25.12",
+ "@esbuild/android-x64": "0.25.12",
+ "@esbuild/darwin-arm64": "0.25.12",
+ "@esbuild/darwin-x64": "0.25.12",
+ "@esbuild/freebsd-arm64": "0.25.12",
+ "@esbuild/freebsd-x64": "0.25.12",
+ "@esbuild/linux-arm": "0.25.12",
+ "@esbuild/linux-arm64": "0.25.12",
+ "@esbuild/linux-ia32": "0.25.12",
+ "@esbuild/linux-loong64": "0.25.12",
+ "@esbuild/linux-mips64el": "0.25.12",
+ "@esbuild/linux-ppc64": "0.25.12",
+ "@esbuild/linux-riscv64": "0.25.12",
+ "@esbuild/linux-s390x": "0.25.12",
+ "@esbuild/linux-x64": "0.25.12",
+ "@esbuild/netbsd-arm64": "0.25.12",
+ "@esbuild/netbsd-x64": "0.25.12",
+ "@esbuild/openbsd-arm64": "0.25.12",
+ "@esbuild/openbsd-x64": "0.25.12",
+ "@esbuild/openharmony-arm64": "0.25.12",
+ "@esbuild/sunos-x64": "0.25.12",
+ "@esbuild/win32-arm64": "0.25.12",
+ "@esbuild/win32-ia32": "0.25.12",
+ "@esbuild/win32-x64": "0.25.12"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint": {
+ "version": "9.39.1",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz",
+ "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.8.0",
+ "@eslint-community/regexpp": "^4.12.1",
+ "@eslint/config-array": "^0.21.1",
+ "@eslint/config-helpers": "^0.4.2",
+ "@eslint/core": "^0.17.0",
+ "@eslint/eslintrc": "^3.3.1",
+ "@eslint/js": "9.39.1",
+ "@eslint/plugin-kit": "^0.4.1",
+ "@humanfs/node": "^0.16.6",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@humanwhocodes/retry": "^0.4.2",
+ "@types/estree": "^1.0.6",
+ "ajv": "^6.12.4",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.6",
+ "debug": "^4.3.2",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^8.4.0",
+ "eslint-visitor-keys": "^4.2.1",
+ "espree": "^10.4.0",
+ "esquery": "^1.5.0",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^8.0.0",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "ignore": "^5.2.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.2",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.3"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://eslint.org/donate"
+ },
+ "peerDependencies": {
+ "jiti": "*"
+ },
+ "peerDependenciesMeta": {
+ "jiti": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-plugin-react-hooks": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz",
+ "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
+ }
+ },
+ "node_modules/eslint-plugin-react-refresh": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.24.tgz",
+ "integrity": "sha512-nLHIW7TEq3aLrEYWpVaJ1dRgFR+wLDPN8e8FpYAql/bMV2oBEfC37K0gLEGgv9fy66juNShSMV8OkTqzltcG/w==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "eslint": ">=8.40"
+ }
+ },
+ "node_modules/eslint-scope": {
+ "version": "8.4.0",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
+ "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint-visitor-keys": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/espree": {
+ "version": "10.4.0",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
+ "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "acorn": "^8.15.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^4.2.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/esquery": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
+ "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fdir": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/file-entry-cache": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flat-cache": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=16.0.0"
+ }
+ },
+ "node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.4"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/flatted": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
+ "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/follow-redirects": {
+ "version": "1.15.11",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/RubenVerborgh"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependenciesMeta": {
+ "debug": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/form-data": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
+ "license": "MIT",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "es-set-tostringtag": "^2.1.0",
+ "hasown": "^2.0.2",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/globals": {
+ "version": "16.5.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz",
+ "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "license": "MIT",
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/import-fresh": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/js-yaml": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
+ "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
+ "node_modules/levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/lodash.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.27",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
+ "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/optionator": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.5"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "nanoid": "^3.3.11",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/postcss-value-parser": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
+ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
+ "license": "MIT"
+ },
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/proxy-from-env": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
+ "license": "MIT"
+ },
+ "node_modules/punycode": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/react": {
+ "version": "19.2.0",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz",
+ "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==",
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-dom": {
+ "version": "19.2.0",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz",
+ "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==",
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "scheduler": "^0.27.0"
+ },
+ "peerDependencies": {
+ "react": "^19.2.0"
+ }
+ },
+ "node_modules/react-refresh": {
+ "version": "0.17.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
+ "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-router": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.9.6.tgz",
+ "integrity": "sha512-Y1tUp8clYRXpfPITyuifmSoE2vncSME18uVLgaqyxh9H35JWpIfzHo+9y3Fzh5odk/jxPW29IgLgzcdwxGqyNA==",
+ "license": "MIT",
+ "dependencies": {
+ "cookie": "^1.0.1",
+ "set-cookie-parser": "^2.6.0"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18"
+ },
+ "peerDependenciesMeta": {
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/react-router-dom": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.9.6.tgz",
+ "integrity": "sha512-2MkC2XSXq6HjGcihnx1s0DBWQETI4mlis4Ux7YTLvP67xnGxCvq+BcCQSO81qQHVUTM1V53tl4iVVaY5sReCOA==",
+ "license": "MIT",
+ "dependencies": {
+ "react-router": "7.9.6"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/rollup": {
+ "version": "4.53.3",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz",
+ "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "1.0.8"
+ },
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "@rollup/rollup-android-arm-eabi": "4.53.3",
+ "@rollup/rollup-android-arm64": "4.53.3",
+ "@rollup/rollup-darwin-arm64": "4.53.3",
+ "@rollup/rollup-darwin-x64": "4.53.3",
+ "@rollup/rollup-freebsd-arm64": "4.53.3",
+ "@rollup/rollup-freebsd-x64": "4.53.3",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.53.3",
+ "@rollup/rollup-linux-arm-musleabihf": "4.53.3",
+ "@rollup/rollup-linux-arm64-gnu": "4.53.3",
+ "@rollup/rollup-linux-arm64-musl": "4.53.3",
+ "@rollup/rollup-linux-loong64-gnu": "4.53.3",
+ "@rollup/rollup-linux-ppc64-gnu": "4.53.3",
+ "@rollup/rollup-linux-riscv64-gnu": "4.53.3",
+ "@rollup/rollup-linux-riscv64-musl": "4.53.3",
+ "@rollup/rollup-linux-s390x-gnu": "4.53.3",
+ "@rollup/rollup-linux-x64-gnu": "4.53.3",
+ "@rollup/rollup-linux-x64-musl": "4.53.3",
+ "@rollup/rollup-openharmony-arm64": "4.53.3",
+ "@rollup/rollup-win32-arm64-msvc": "4.53.3",
+ "@rollup/rollup-win32-ia32-msvc": "4.53.3",
+ "@rollup/rollup-win32-x64-gnu": "4.53.3",
+ "@rollup/rollup-win32-x64-msvc": "4.53.3",
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/scheduler": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
+ "license": "MIT"
+ },
+ "node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/set-cookie-parser": {
+ "version": "2.7.2",
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
+ "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
+ "license": "MIT"
+ },
+ "node_modules/shallowequal": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
+ "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==",
+ "license": "MIT"
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/strip-json-comments": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/styled-components": {
+ "version": "6.1.19",
+ "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-6.1.19.tgz",
+ "integrity": "sha512-1v/e3Dl1BknC37cXMhwGomhO8AkYmN41CqyX9xhUDxry1ns3BFQy2lLDRQXJRdVVWB9OHemv/53xaStimvWyuA==",
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/is-prop-valid": "1.2.2",
+ "@emotion/unitless": "0.8.1",
+ "@types/stylis": "4.2.5",
+ "css-to-react-native": "3.2.0",
+ "csstype": "3.1.3",
+ "postcss": "8.4.49",
+ "shallowequal": "1.1.0",
+ "stylis": "4.3.2",
+ "tslib": "2.6.2"
+ },
+ "engines": {
+ "node": ">= 16"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/styled-components"
+ },
+ "peerDependencies": {
+ "react": ">= 16.8.0",
+ "react-dom": ">= 16.8.0"
+ }
+ },
+ "node_modules/styled-components/node_modules/csstype": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
+ "license": "MIT"
+ },
+ "node_modules/styled-components/node_modules/postcss": {
+ "version": "8.4.49",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
+ "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "nanoid": "^3.3.7",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/stylis": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.2.tgz",
+ "integrity": "sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==",
+ "license": "MIT"
+ },
+ "node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.15",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
+ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==",
+ "license": "0BSD"
+ },
+ "node_modules/type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz",
+ "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/vite": {
+ "version": "6.4.1",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
+ "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "esbuild": "^0.25.0",
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2",
+ "postcss": "^8.5.3",
+ "rollup": "^4.34.9",
+ "tinyglobby": "^0.2.13"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
+ "jiti": ">=1.21.0",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "sass-embedded": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/word-wrap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ }
+ }
+}
diff --git a/react-project/package.json b/react-project/package.json
new file mode 100644
index 00000000..56dffe82
--- /dev/null
+++ b/react-project/package.json
@@ -0,0 +1,30 @@
+{
+ "name": "react-project",
+ "private": true,
+ "version": "0.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "vite build",
+ "lint": "eslint .",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "axios": "^1.9.0",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0",
+ "react-router-dom": "^7.9.6",
+ "styled-components": "^6.1.19"
+ },
+ "devDependencies": {
+ "@eslint/js": "^9.22.0",
+ "@types/react": "^19.0.10",
+ "@types/react-dom": "^19.0.4",
+ "@vitejs/plugin-react": "^4.3.4",
+ "eslint": "^9.22.0",
+ "eslint-plugin-react-hooks": "^5.2.0",
+ "eslint-plugin-react-refresh": "^0.4.19",
+ "globals": "^16.0.0",
+ "vite": "^6.3.1"
+ }
+}
diff --git a/react-project/public/favicon.png b/react-project/public/favicon.png
new file mode 100644
index 00000000..269b1d28
Binary files /dev/null and b/react-project/public/favicon.png differ
diff --git a/react-project/public/og_image.png b/react-project/public/og_image.png
new file mode 100644
index 00000000..d9def111
Binary files /dev/null and b/react-project/public/og_image.png differ
diff --git a/react-project/src/App.jsx b/react-project/src/App.jsx
new file mode 100644
index 00000000..ed8192cc
--- /dev/null
+++ b/react-project/src/App.jsx
@@ -0,0 +1,27 @@
+import { BrowserRouter, Navigate, Route, Routes } from 'react-router-dom';
+import Layout from './Layout';
+import ProductList from './pages/ProductList';
+import AddProduct from './pages/AddProduct';
+import Product from './pages/Product';
+import GlobalStyle from './styles/GlobalStyle';
+
+function Main() {
+
+ return (
+
+
+
+ }>
+ {/* } /> */}
+ } />
+
+ } />
+ } />
+ } />
+
+
+
+ );
+}
+
+export default Main;
diff --git a/react-project/src/Layout.jsx b/react-project/src/Layout.jsx
new file mode 100644
index 00000000..9528e87b
--- /dev/null
+++ b/react-project/src/Layout.jsx
@@ -0,0 +1,14 @@
+import { Outlet } from 'react-router-dom';
+import Nav from './components/Nav';
+
+function Layout() {
+ return (
+ <>
+
+
+ {/* */}
+ >
+ );
+}
+
+export default Layout;
\ No newline at end of file
diff --git a/react-project/src/assets/backIcon.svg b/react-project/src/assets/backIcon.svg
new file mode 100644
index 00000000..8db5377e
--- /dev/null
+++ b/react-project/src/assets/backIcon.svg
@@ -0,0 +1,4 @@
+
diff --git a/react-project/src/assets/dropdownDesktopIcon.svg b/react-project/src/assets/dropdownDesktopIcon.svg
new file mode 100644
index 00000000..8308690f
--- /dev/null
+++ b/react-project/src/assets/dropdownDesktopIcon.svg
@@ -0,0 +1,3 @@
+
diff --git a/react-project/src/assets/dropdownMobileIcon.svg b/react-project/src/assets/dropdownMobileIcon.svg
new file mode 100644
index 00000000..657b44f9
--- /dev/null
+++ b/react-project/src/assets/dropdownMobileIcon.svg
@@ -0,0 +1,6 @@
+
diff --git a/react-project/src/assets/formDeleteIcon.svg b/react-project/src/assets/formDeleteIcon.svg
new file mode 100644
index 00000000..a85baced
--- /dev/null
+++ b/react-project/src/assets/formDeleteIcon.svg
@@ -0,0 +1,5 @@
+
diff --git a/react-project/src/assets/icon_sort_option.svg b/react-project/src/assets/icon_sort_option.svg
new file mode 100644
index 00000000..07b68fd2
--- /dev/null
+++ b/react-project/src/assets/icon_sort_option.svg
@@ -0,0 +1,3 @@
+
diff --git a/react-project/src/assets/inquiryEmpty.png b/react-project/src/assets/inquiryEmpty.png
new file mode 100644
index 00000000..5c244451
Binary files /dev/null and b/react-project/src/assets/inquiryEmpty.png differ
diff --git a/react-project/src/assets/logo.png b/react-project/src/assets/logo.png
new file mode 100644
index 00000000..95b51fa8
Binary files /dev/null and b/react-project/src/assets/logo.png differ
diff --git a/react-project/src/assets/logoMo.png b/react-project/src/assets/logoMo.png
new file mode 100644
index 00000000..7e94a17d
Binary files /dev/null and b/react-project/src/assets/logoMo.png differ
diff --git a/react-project/src/assets/moreVerticalIcon.svg b/react-project/src/assets/moreVerticalIcon.svg
new file mode 100644
index 00000000..dd7ed7f5
--- /dev/null
+++ b/react-project/src/assets/moreVerticalIcon.svg
@@ -0,0 +1,5 @@
+
diff --git a/react-project/src/assets/paginationArr.svg b/react-project/src/assets/paginationArr.svg
new file mode 100644
index 00000000..040e81c2
--- /dev/null
+++ b/react-project/src/assets/paginationArr.svg
@@ -0,0 +1,3 @@
+
diff --git a/react-project/src/assets/plusIcon.svg b/react-project/src/assets/plusIcon.svg
new file mode 100644
index 00000000..5bb9abf5
--- /dev/null
+++ b/react-project/src/assets/plusIcon.svg
@@ -0,0 +1,4 @@
+
diff --git a/react-project/src/assets/productLike.svg b/react-project/src/assets/productLike.svg
new file mode 100644
index 00000000..72f720d5
--- /dev/null
+++ b/react-project/src/assets/productLike.svg
@@ -0,0 +1,3 @@
+
diff --git a/react-project/src/assets/profileDefaultImg.png b/react-project/src/assets/profileDefaultImg.png
new file mode 100644
index 00000000..b5d38628
Binary files /dev/null and b/react-project/src/assets/profileDefaultImg.png differ
diff --git a/react-project/src/assets/searchIcon.svg b/react-project/src/assets/searchIcon.svg
new file mode 100644
index 00000000..d9cc31ea
--- /dev/null
+++ b/react-project/src/assets/searchIcon.svg
@@ -0,0 +1,3 @@
+
diff --git a/react-project/src/components/Button.jsx b/react-project/src/components/Button.jsx
new file mode 100644
index 00000000..0a752b93
--- /dev/null
+++ b/react-project/src/components/Button.jsx
@@ -0,0 +1,32 @@
+import { DefaultButton } from "../styles/ButtonStyles";
+
+function Button({
+ children,
+ className,
+ onClick,
+ disabled = false,
+ variant = "primary",
+ withIcon = false,
+ fontSizeVariant,
+ paddingVariant,
+ desktopOnly,
+ mobileOnly,
+}) {
+ return (
+
+ {children}
+
+ );
+}
+
+export default Button;
diff --git a/react-project/src/components/Dropdown.jsx b/react-project/src/components/Dropdown.jsx
new file mode 100644
index 00000000..5a2c245b
--- /dev/null
+++ b/react-project/src/components/Dropdown.jsx
@@ -0,0 +1,22 @@
+import { DropdownWrapper, Button, OptionList, Option } from './../styles/DropdownStyles';
+import dropdownDesktopIcon from '../assets/dropdownDesktopIcon.svg';
+import dropdownMobileIcon from '../assets/dropdownMobileIcon.svg';
+
+function Dropdown({isOpen, value, currentScreen, toggleDropdown, changeOrder}) {
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+export default Dropdown;
\ No newline at end of file
diff --git a/react-project/src/components/FileInput.jsx b/react-project/src/components/FileInput.jsx
new file mode 100644
index 00000000..8bc564ae
--- /dev/null
+++ b/react-project/src/components/FileInput.jsx
@@ -0,0 +1,132 @@
+import { useEffect, useRef, useState } from "react";
+import styled from "styled-components";
+import { Label } from "../styles/FormCommonStyles";
+import FormErrorMessage from "./FormErrorMessage";
+import placeholderImg from "../assets/plusIcon.svg";
+import imgDeleteIcon from "../assets/formDeleteIcon.svg";
+
+function FileInput () {
+ const [file, setFile] = useState('');
+ const [preview, setPreview] = useState('');
+ const [iserrMsg, setIsErrMsg] = useState(false);
+ const inputRef = useRef();
+
+ const clickAddImage = () => {
+ if(file) {
+ setIsErrMsg(true);
+ return;
+ }
+
+ if(inputRef.current)
+ inputRef.current.click();
+ };
+
+ const addImage = (e) => {
+ const changeFile = e.target.files[0];
+ setFile(changeFile);
+ };
+
+ useEffect(() => {
+ if(!file) return;
+
+ const objectURL = URL.createObjectURL(file);
+ setPreview(objectURL);
+
+ return () => {
+ URL.revokeObjectURL(objectURL);
+ }
+ }, [file]);
+
+ const deletePreview= () => {
+ setFile('');
+ setPreview('');
+ setIsErrMsg(false);
+ if(inputRef.current) {
+ inputRef.current.value = ''
+ }
+ };
+
+ return (
+ <>
+
+
+
+
+
+ 이미지 등록
+
+ {preview &&
+
+
+
+ }
+
+ {iserrMsg && *이미지 등록은 최대 1개까지 가능합니다.}
+ >
+ )
+}
+
+export default FileInput;
+
+const ImgWrap = styled.div`
+ display: flex;
+ gap: 24px;
+
+ @media (max-width: 1199px) {
+ gap: 10px;
+ }
+`;
+
+const ImgPlaceholder = styled.div`
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ gap: 12px;
+ width: 282px;
+ height: 282px;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 26px;
+ color: var(--gray400);
+ border-radius: 12px;
+ background-color: var(--gray100);
+ cursor: pointer;
+
+ @media (max-width: 1199px) {
+ width: 168px;
+ height: 168px;
+ }
+ @media (max-width: 767px) {
+ width: calc((100vw - (24px * 2) - 10px) / 2);
+ height: calc((100vw - (24px * 2) - 10px) / 2);
+ }
+`;
+
+const ImgPreview = styled.div`
+ position: relative;
+ width: 282px;
+ height: 282px;
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-position: center;
+ border-radius: 12px;
+
+ @media (max-width: 1199px) {
+ width: 168px;
+ height: 168px;
+ }
+ @media (max-width: 767px) {
+ width: calc((100vw - (24px * 2) - 10px) / 2);
+ height: calc((100vw - (24px * 2) - 10px) / 2);
+ }
+
+ button {
+ position: absolute;
+ width: 22px;
+ height: 24px;
+ top: 12px;
+ right: 12px;
+
+ }
+`;
\ No newline at end of file
diff --git a/react-project/src/components/FormErrorMessage.jsx b/react-project/src/components/FormErrorMessage.jsx
new file mode 100644
index 00000000..6409cb11
--- /dev/null
+++ b/react-project/src/components/FormErrorMessage.jsx
@@ -0,0 +1,19 @@
+import styled from "styled-components";
+
+function FormErrorMessage ({children}) {
+ return (
+
+ {children}
+
+ )
+}
+
+export default FormErrorMessage;
+
+const ErrorMsg = styled.div`
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 26px;
+ color: var(--red);
+ margin-top: 18px;
+`;
\ No newline at end of file
diff --git a/react-project/src/components/Nav.jsx b/react-project/src/components/Nav.jsx
new file mode 100644
index 00000000..a82aded0
--- /dev/null
+++ b/react-project/src/components/Nav.jsx
@@ -0,0 +1,46 @@
+import { Link, useLocation } from "react-router-dom";
+import { Container, Header, Left, Logo, LogoDesktopImg, LogoMobileImg, MenuItemLink, MenuList, MyProfile, ProfileImg } from "../styles/NavStyles";
+import logoImg from "../assets/logo.png";
+import logoMoImg from "../assets/logoMo.png";
+
+function Nav() {
+ const location = useLocation();
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ 자유게시판
+
+
+
+
+ 중고마켓
+
+
+
+
+
+
+
+
+ )
+}
+
+export default Nav;
\ No newline at end of file
diff --git a/react-project/src/components/Pagination.jsx b/react-project/src/components/Pagination.jsx
new file mode 100644
index 00000000..808df376
--- /dev/null
+++ b/react-project/src/components/Pagination.jsx
@@ -0,0 +1,51 @@
+import { PaginationWrap, PaginationList, PaginationItem, PaginationButton } from "../styles/PaginationStyles";
+import pageArrImg from "../assets/paginationArr.svg"
+
+function Pagination({currentPage, totalCount, pageSize, onChange}) {
+ const PAGELIMIT = 5;
+ const totalPages = Math.ceil(totalCount / pageSize);
+
+ if (totalPages === 0) return null;
+
+ const currentGroup = Math.ceil(currentPage / PAGELIMIT);
+ const startPage = (currentGroup - 1) * PAGELIMIT + 1;
+ const endPage = Math.min(startPage + PAGELIMIT - 1, totalPages);
+
+ const pages = [];
+ for (let i = startPage; i <= endPage; i++) {
+ pages.push(i);
+ }
+
+ return (
+
+
+
+ onChange(currentPage - 1)}
+ disabled={currentPage === 1}
+ >
+
+
+
+
+ {pages.map((num) => (
+
+ onChange(num)}>
+ {num}
+
+
+ ))}
+
+ onChange(currentPage + 1)}
+ disabled={currentPage === totalPages}
+ >
+
+
+
+
+
+ )
+}
+
+export default Pagination;
\ No newline at end of file
diff --git a/react-project/src/components/ProductDetail.jsx b/react-project/src/components/ProductDetail.jsx
new file mode 100644
index 00000000..5a66e453
--- /dev/null
+++ b/react-project/src/components/ProductDetail.jsx
@@ -0,0 +1,43 @@
+import likeIcon from "../assets/productLike.svg";
+import profileDefaultImg from "../assets/profileDefaultImg.png";
+import { DetailWrap, DetailDate, DetailDesc, DetailFavoritButton, DetailFavoritCount, DetailFavoritImg, DetailImg, DetailInfoList, DetailInfoTitle, DetailName, DetailNicknameWrap, DetailOwnerImg, DetailOwnerNickname, DetailOwnerWrapper, DetailPrice, DetailTxtBottom, DetailTxtTop, DetailTxtWrap, LocalTagList } from "../styles/ProductDetailStyles";
+import { Tag } from "../styles/ProductCommonStyles";
+
+function ProductDetail ({ item }) {
+ return (
+
+
+
+
+ {item.name}
+ {item.price.toLocaleString()}원
+
+
+ 상품 소개
+ {item.description}
+ 상품 태그
+
+ {item.tags.map((tag, index) => (
+ #{tag}
+ ))}
+
+
+
+
+
+
+ {item.ownerNickname}
+ {(new Date(item.updatedAt)).toLocaleDateString().slice(0, -1)}
+
+
+
+
+ {item.favoriteCount}
+
+
+
+
+ )
+}
+
+export default ProductDetail;
\ No newline at end of file
diff --git a/react-project/src/components/ProductForm.jsx b/react-project/src/components/ProductForm.jsx
new file mode 100644
index 00000000..de191e0a
--- /dev/null
+++ b/react-project/src/components/ProductForm.jsx
@@ -0,0 +1,102 @@
+import { useEffect, useState } from "react";
+import styled from "styled-components";
+import FileInput from "./FileInput";
+import Tags from "./Tags";
+import { ListTitle } from "../styles/ProductCommonStyles";
+import { Label, Input, Textarea } from "../styles/FormCommonStyles";
+import Button from './Button';
+
+function ProductForm () {
+ const [form, setForm] = useState({
+ images: [],
+ name: '',
+ description: '',
+ price: 0,
+ tags: [],
+ });
+ const [isFormValid, setIsValid] = useState(false);
+
+ const handleChange = (e) => {
+ const { name, value } = e.target;
+
+ setForm(prev => ({
+ ...prev,
+ [name]: name === "price" ? Number(value) : value,
+ }));
+
+ formValidation();
+ };
+
+ const addTag = (newTag) => {
+ setForm(prev => ({
+ ...prev,
+ tags: [...prev.tags, newTag],
+ }));
+
+ formValidation();
+ };
+
+ const deleteTag = (targetIndex) => {
+ setForm(prev => ({
+ ...prev,
+ tags: prev.tags.filter((_, i) => i !== targetIndex),
+ }));
+
+ formValidation();
+ };
+
+ function formValidation () {
+ if( form.name.trim() !== '' &&
+ form.description.trim() !== '' &&
+ form.price !== 0 &&
+ form.tags.length > 0 )
+ setIsValid(true);
+ else setIsValid(false);
+ }
+
+ useEffect(() => {
+ formValidation();
+ }, [form])
+
+ return (
+
+ )
+}
+
+export default ProductForm;
+
+const Form = styled.form`
+ margin-bottom: 59px;
+
+ @media (max-width: 1199px) {
+ margin-bottom: 78px;
+ }
+ @media (max-width: 767px) {
+ margin-bottom: 70px;
+ }
+`;
+
+const FormHeader = styled.div`
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+`;
+
diff --git a/react-project/src/components/ProductInquiryForm.jsx b/react-project/src/components/ProductInquiryForm.jsx
new file mode 100644
index 00000000..9acf00e3
--- /dev/null
+++ b/react-project/src/components/ProductInquiryForm.jsx
@@ -0,0 +1,23 @@
+import { useState } from 'react';
+import { InquiryForm, InquiryFormButton, InquiryFormTextarea, InquiryFormTitle } from '../styles/ProductInquiryStyles';
+
+function ProductInquiryForm () {
+ const [content, setContent] = useState('');
+
+ const handleChange = (e) => {
+ const value = e.target.value;
+ setContent(value);
+ }
+
+ return (
+
+ 문의하기
+
+
+ 등록
+
+
+ )
+}
+
+export default ProductInquiryForm;
\ No newline at end of file
diff --git a/react-project/src/components/ProductInquiryList.jsx b/react-project/src/components/ProductInquiryList.jsx
new file mode 100644
index 00000000..bba4d4df
--- /dev/null
+++ b/react-project/src/components/ProductInquiryList.jsx
@@ -0,0 +1,103 @@
+import { CommentMenuButton, CommentContent, CommentDate, CommentProfileImg, CommentItem, CommentNickname, CommentNicknameWrap, CommentProfileWrap, CommentOptionsMenu, CommentMenu, CommentOption, InquiryEmptyWrap, InquiryEmpty, CommentWrap, CommentTextarea, CommentUpdateMenu, InquiryEmptyImg } from "../styles/ProductInquiryStyles";
+import profileDefaultImg from "../assets/profileDefaultImg.png";
+import inquiryEmptyImg from "../assets/inquiryEmpty.png";
+import { useState } from "react";
+import Button from './Button';
+
+function getRelativeTime (updatedAt) {
+ const now = new Date();
+ const updatedDate = new Date(updatedAt);
+ const seconds = Math.floor((now.getTime() - updatedDate.getTime()) / 1000); // 차이를 초 단위로 계산
+
+ let interval = seconds / 31536000; // 년
+ if (interval > 1) {
+ return Math.floor(interval) + "년 전";
+ }
+ interval = seconds / 2592000; // 월 (평균 30일 기준)
+ if (interval > 1) {
+ return Math.floor(interval) + "개월 전";
+ }
+ interval = seconds / 86400; // 일 (24시간)
+ if (interval > 1) {
+ return Math.floor(interval) + "일 전";
+ }
+ interval = seconds / 3600; // 시간 (60분)
+ if (interval > 1) {
+ return Math.floor(interval) + "시간 전";
+ }
+ interval = seconds / 60; // 분 (60초)
+ if (interval > 1) {
+ return Math.floor(interval) + "분 전";
+ }
+ return Math.floor(seconds) + "초 전";
+}
+
+function ProductInquiryList ({ list }) {
+ const [openMenuId, setOpenMenuId] = useState(null);
+ const [editingCommentId, setEditingCommentId] = useState(null);
+
+ const toggleDropdown = (id) => {
+ setOpenMenuId((prev) => prev === id ? null : id);
+ }
+
+ const setActiveCommentId = (id) => {
+ setEditingCommentId(id);
+ setOpenMenuId(null);
+ }
+
+ const isDeleteComment = (id) => {
+ console.log("삭제할 댓글 번호:" + id );
+ }
+
+ const isUpdateComment = (id) => {
+ console.log("수정할 댓글 번호:" + id);
+ };
+
+ return (
+
+ {list.length > 0 ?
+
+ {list.map((item, index) => (
+
+ {editingCommentId === item.id ?
+
+ :
+ {item.content}
+ }
+ {editingCommentId !== item.id ?
+
+ toggleDropdown(item.id)} />
+
+ setActiveCommentId(item.id)}>수정하기
+ isDeleteComment(item.id)}>삭제하기
+
+
+ :
+
+
+
+
+ }
+
+
+
+ {item.writer.nickname}
+ {getRelativeTime(item.updatedAt)}
+
+
+
+ ))}
+
+ :
+
+
+
+ 아직 문의가 없어요
+
+
+ }
+
+ )
+}
+
+export default ProductInquiryList;
\ No newline at end of file
diff --git a/react-project/src/components/ProductInquirySection.jsx b/react-project/src/components/ProductInquirySection.jsx
new file mode 100644
index 00000000..3db8ddf8
--- /dev/null
+++ b/react-project/src/components/ProductInquirySection.jsx
@@ -0,0 +1,14 @@
+import { InquirySectionWrap } from "../styles/ProductInquiryStyles";
+import ProductInquiryForm from "./ProductInquiryForm";
+import ProductInquiryList from "./ProductInquiryList";
+
+function ProductInquirySection ({ list }) {
+ return (
+
+
+
+
+ )
+}
+
+export default ProductInquirySection;
\ No newline at end of file
diff --git a/react-project/src/components/ProductListItem.jsx b/react-project/src/components/ProductListItem.jsx
new file mode 100644
index 00000000..6b8b7364
--- /dev/null
+++ b/react-project/src/components/ProductListItem.jsx
@@ -0,0 +1,25 @@
+import { ProductListWrapper, ListItem, ListItemLink, ListItemImg, ListItemName, ListItemPrice, ListItemFavoritButton, FavoritButtonImg, FavoritButtonCount } from "../styles/ProductListItemStyles";
+import likeIcon from "../assets//productLike.svg"
+
+function ProductListItem ({list, category}) {
+ return (
+
+ {list.map((item) => (
+
+
+
+ {item.name}
+ {item.price.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',')}원
+
+
+ {item.favoriteCount}
+
+
+
+ ))}
+
+ )
+}
+
+export default ProductListItem;
+
diff --git a/react-project/src/components/Search.jsx b/react-project/src/components/Search.jsx
new file mode 100644
index 00000000..1496b9dd
--- /dev/null
+++ b/react-project/src/components/Search.jsx
@@ -0,0 +1,11 @@
+import { SearchInput, SearchInputBox } from "../styles/SearchStyles";
+
+function Search ({ changeKeyword }) {
+ return (
+
+
+
+ )
+}
+
+export default Search;
\ No newline at end of file
diff --git a/react-project/src/components/Tags.jsx b/react-project/src/components/Tags.jsx
new file mode 100644
index 00000000..10644451
--- /dev/null
+++ b/react-project/src/components/Tags.jsx
@@ -0,0 +1,61 @@
+import {useRef, useState } from "react";
+import { Input, Label } from "../styles/FormCommonStyles";
+import FormErrorMessage from "./FormErrorMessage";
+import tagDeleteIcon from "../assets/formDeleteIcon.svg";
+import { TagList as commonTagList, Tag } from "../styles/ProductCommonStyles";
+import styled from "styled-components";
+
+function Tags ({ tags, addTag, deleteTag }) {
+ const [iserrMsg, setIsErrMsg] = useState(false);
+ const inputRef = useRef();
+
+ const inputTag = () => {
+ if(iserrMsg) setIsErrMsg(false);
+ }
+
+ const handleAddTag = (e) => {
+ const value = e.target.value.trim();
+
+ // 미완성 한글(초성/중성) Enter 입력 막기
+ if (e.key === "Enter" && !/^[가-힣a-zA-Z0-9]+$/.test(value)) {
+ return;
+ }
+
+ // e.nativeEvent.isComposing 는 조합중일때 true 아닐때 false
+ if(e.key === 'Enter' && !e.nativeEvent.isComposing) {
+ if(tags.includes(value)) {
+ setIsErrMsg(true);
+ } else {
+ addTag(value);
+ }
+ inputRef.current.value = '';
+ }
+ }
+
+ const handleDeleteTag = (index) => {
+ deleteTag(index);
+ };
+
+ return (
+ <>
+
+
+
+ {tags.map((tag, index) => (
+
+ #{tag}
+
+
+ ))}
+
+ {iserrMsg && *같은 태그가 이미 등록되어 있습니다.}
+ >
+ )
+}
+
+export default Tags;
+
+const LocalTag = styled(commonTagList)`
+ gap: 12px;
+ margin-top: 14px;
+`;
\ No newline at end of file
diff --git a/react-project/src/hooks/useBestProducts.js b/react-project/src/hooks/useBestProducts.js
new file mode 100644
index 00000000..9510b393
--- /dev/null
+++ b/react-project/src/hooks/useBestProducts.js
@@ -0,0 +1,36 @@
+import axios from "../utils/axios";
+import { useEffect, useState } from "react";
+
+function useBestProducts (bestPageSize) {
+ const [bestList, setBestList] = useState([]);
+
+ const loadBestProducts = async () => {
+ if(bestPageSize === 0) return;
+
+ let data = null;
+ try {
+ const response = await axios.get('products', {
+ params: {
+ pageSize: bestPageSize,
+ orderBy: 'favorite',
+ },
+ });
+ data = response.data;
+ } catch(error) {
+ console.error('에러가 발생했습니다.' + error);
+ }
+
+ if(!data) return;
+
+ const { list } = data;
+ setBestList(list);
+ };
+
+ useEffect(() => {
+ loadBestProducts();
+ }, [bestPageSize]);
+
+ return { bestList }
+}
+
+export default useBestProducts;
\ No newline at end of file
diff --git a/react-project/src/hooks/useProduct.js b/react-project/src/hooks/useProduct.js
new file mode 100644
index 00000000..12e39786
--- /dev/null
+++ b/react-project/src/hooks/useProduct.js
@@ -0,0 +1,24 @@
+import { useEffect, useState } from "react";
+import axios from "../utils/axios";
+
+function useProduct (id) {
+ const [item, setItem] = useState(null);
+
+ const loadItem = async () => {
+ try {
+ const response = await axios.get(`products/${id}`);
+ const data = response.data;
+ setItem(data);
+ } catch (error) {
+ console.error("상품 정보를 불러오지 못했습니다:", error);
+ }
+ };
+
+ useEffect(() => {
+ loadItem();
+ }, []);
+
+ return { item }
+}
+
+export default useProduct;
\ No newline at end of file
diff --git a/react-project/src/hooks/useProductInquiry.js b/react-project/src/hooks/useProductInquiry.js
new file mode 100644
index 00000000..8b7eb0a2
--- /dev/null
+++ b/react-project/src/hooks/useProductInquiry.js
@@ -0,0 +1,32 @@
+import { useEffect, useState } from "react";
+import axios from "../utils/axios";
+
+function useProductInquiry (id) {
+ const [list, setList] = useState([]);
+
+ let data = null;
+ const loadInquiry = async () => {
+ try {
+ const response = await axios.get(`products/${id}/comments`, {
+ params: {
+ limit: 10,
+ },
+ });
+ data = response.data;
+ } catch (error) {
+ console.error("상품 문의를 불러오지 못했습니다:", error);
+ }
+
+ if(!data) return;
+ const { list } = data;
+ setList(list);
+ };
+
+ useEffect(() => {
+ loadInquiry();
+ }, []);
+
+ return { list }
+}
+
+export default useProductInquiry;
\ No newline at end of file
diff --git a/react-project/src/hooks/useProducts.js b/react-project/src/hooks/useProducts.js
new file mode 100644
index 00000000..152f7de9
--- /dev/null
+++ b/react-project/src/hooks/useProducts.js
@@ -0,0 +1,41 @@
+import { useEffect, useState } from "react";
+import axios from "../utils/axios";
+
+function useProducts (order, keyword, currentPage, pageSize) {
+ const [list, setList] = useState([]);
+ const [totalCount, setTotalCount] = useState(0);
+
+ const loadProducts = async () => {
+ if(pageSize === 0) return;
+
+ let data = null;
+ try {
+ const response = await axios.get('products', {
+ params: {
+ page: currentPage,
+ pageSize: pageSize,
+ orderBy: order,
+ keyword: keyword,
+ },
+ });
+ data = response.data;
+ } catch(error) {
+ console.error('에러가 발생했습니다.' + error);
+ }
+
+ if(!data) return;
+
+ const { list, totalCount } = data;
+ setList(list);
+ setTotalCount(totalCount);
+ };
+
+ useEffect(() => {
+ loadProducts();
+ }, [order, keyword, currentPage, pageSize]);
+
+ return {list, totalCount}
+
+}
+
+export default useProducts;
\ No newline at end of file
diff --git a/react-project/src/hooks/useResponsivePageSize.js b/react-project/src/hooks/useResponsivePageSize.js
new file mode 100644
index 00000000..3dfa6a18
--- /dev/null
+++ b/react-project/src/hooks/useResponsivePageSize.js
@@ -0,0 +1,38 @@
+import { useEffect, useState } from "react";
+
+function useResponsivePageSize() {
+ const [pageSize, setPageSize] = useState(0);
+ const [bestPageSize, setBestPageSize] = useState(0);
+ const [currentScreen, setCurrentScreen] = useState('');
+
+ const handleResize = () => {
+ const width = window.innerWidth;
+
+ if (width >= 1200) {
+ setPageSize(10);
+ setBestPageSize(4);
+ setCurrentScreen('pc');
+ } else if (width >= 768) {
+ setPageSize(6);
+ setBestPageSize(2);
+ setCurrentScreen('tablet');
+ } else {
+ setPageSize(4);
+ setBestPageSize(1);
+ setCurrentScreen('mobile');
+ }
+ };
+
+ useEffect(() => {
+ handleResize();
+
+ window.addEventListener("resize", handleResize);
+ return () => {
+ window.removeEventListener("resize", handleResize);
+ };
+ }, []);
+
+ return { pageSize, bestPageSize, currentScreen }
+}
+
+export default useResponsivePageSize;
\ No newline at end of file
diff --git a/react-project/src/main.jsx b/react-project/src/main.jsx
new file mode 100644
index 00000000..4c0ee61e
--- /dev/null
+++ b/react-project/src/main.jsx
@@ -0,0 +1,9 @@
+import { createRoot } from 'react-dom/client';
+import { StrictMode } from 'react';
+import App from './App';
+
+createRoot(document.getElementById('root')).render(
+
+
+ ,
+)
diff --git a/react-project/src/pages/AddProduct.jsx b/react-project/src/pages/AddProduct.jsx
new file mode 100644
index 00000000..6485d345
--- /dev/null
+++ b/react-project/src/pages/AddProduct.jsx
@@ -0,0 +1,14 @@
+import ProductForm from "../components/ProductForm";
+import { Container } from "../styles/ProductCommonStyles";
+
+function AddProduct () {
+ return (
+
+ )
+}
+
+export default AddProduct;
\ No newline at end of file
diff --git a/react-project/src/pages/Product.jsx b/react-project/src/pages/Product.jsx
new file mode 100644
index 00000000..9b764896
--- /dev/null
+++ b/react-project/src/pages/Product.jsx
@@ -0,0 +1,41 @@
+import { useNavigate, useParams } from "react-router-dom";
+import useProduct from "../hooks/useProduct";
+import useProductInquiry from "../hooks/useProductInquiry";
+import ProductDetail from "../components/ProductDetail";
+import ProductInquirySection from "../components/ProductInquirySection";
+import Button from './../components/Button';
+import { Container } from "../styles/ProductCommonStyles";
+import backButtonIcon from "../assets/backIcon.svg"
+import { ButtonWrap, Divider } from "../styles/ProductStyles";
+
+function Product () {
+ const { id } = useParams();
+ const { item } = useProduct(id);
+ const { list } = useProductInquiry(id);
+ const navigate = useNavigate();
+
+ const goToProductList = () => {
+ navigate('/items');
+ }
+
+ // 로딩 처리
+ if (!item) return Loading...
;
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+export default Product;
\ No newline at end of file
diff --git a/react-project/src/pages/ProductList.jsx b/react-project/src/pages/ProductList.jsx
new file mode 100644
index 00000000..9daaabb3
--- /dev/null
+++ b/react-project/src/pages/ProductList.jsx
@@ -0,0 +1,83 @@
+import { useNavigate, useSearchParams } from "react-router-dom";
+import { useState } from "react";
+import useResponsivePageSize from "../hooks/useResponsivePageSize";
+import ProductListItem from "../components/ProductListItem";
+import Button from "../components/Button";
+import Pagination from '../components/Pagination';
+import Dropdown from '../components/Dropdown';
+import Search from "../components/Search";
+import useBestProducts from "../hooks/useBestProducts";
+import useProducts from "../hooks/useProducts";
+import { Container, ListTitle } from "../styles/ProductCommonStyles";
+import { ProductListBox, SearchSelectBox, TitleBox } from "../styles/ProductListStyles";
+
+function ProductList () {
+ const [order, setOrder] = useState('recent');
+ const [searchParams, setSearchParams] = useSearchParams();
+ const initKeyword = searchParams.get('keyword');
+ const [keyword, setKeyword] = useState(initKeyword || '');
+ const [currentPage, setCurrentPage] = useState(1);
+
+ const [dropdownOpen, setDropdownOpen] = useState(false);
+ const navigate = useNavigate();
+
+ const { pageSize, bestPageSize, currentScreen } = useResponsivePageSize();
+ const { bestList } = useBestProducts(bestPageSize);
+ const { list, totalCount } = useProducts(order, keyword, currentPage, pageSize);
+
+ const toggleDropdown = () => {
+ setDropdownOpen(!dropdownOpen);
+ }
+
+ const changeOrder = (order) => {
+ setDropdownOpen(!dropdownOpen);
+ setOrder(order);
+ setCurrentPage(1);
+ }
+
+ const changeKeyword = (e) => {
+ const keyword = e.target.value;
+ setKeyword(keyword);
+ setSearchParams(keyword ? {keyword} : {});
+ setCurrentPage(1);
+ }
+
+ const goToAddItem = () => {
+ navigate('/additem');
+ }
+
+ const changePage = (num) => {
+ setCurrentPage(num);
+ }
+
+ return (
+
+
+
+
+
+ 베스트 상품
+
+
+
+
+
+
+ 전체 상품
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+export default ProductList;
diff --git a/react-project/src/styles/ButtonStyles.js b/react-project/src/styles/ButtonStyles.js
new file mode 100644
index 00000000..c7766625
--- /dev/null
+++ b/react-project/src/styles/ButtonStyles.js
@@ -0,0 +1,52 @@
+import styled, { css } from "styled-components";
+
+export const DefaultButton = styled.button`
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ gap: ${({ $withIcon }) => ($withIcon ? "8px" : "0")};
+
+ font-size: ${({$fontSizeVariant}) => $fontSizeVariant ? $fontSizeVariant : "16px"};
+ font-weight: 600;
+ padding: ${({$paddingVariant}) =>
+ $paddingVariant ? $paddingVariant : "11px 20px"};
+
+ color: var(--gray100);
+ background-color: var(--blue);
+
+ border-radius: ${({ $variant }) =>
+ $variant === "rounded" ? "40px" : "8px"};
+
+ &.ghost {
+ background-color: var(--white);
+ color: var(--gray500);
+ &:hover {
+ background-color: var(--white);
+ }
+ }
+
+ &:disabled {
+ background-color: var(--gray400) !important;
+ }
+
+ &:hover {
+ background-color: var(--blue);
+ }
+
+ ${({ $desktopOnly }) =>
+ $desktopOnly &&
+ css`
+ @media (max-width: 767px) {
+ display: none;
+ }
+ `}
+
+ ${({ $mobileOnly }) =>
+ $mobileOnly &&
+ css`
+ display: none;
+ @media (max-width: 767px) {
+ display: inline-flex;
+ }
+ `}
+`;
diff --git a/react-project/src/styles/DropdownStyles.js b/react-project/src/styles/DropdownStyles.js
new file mode 100644
index 00000000..5f029971
--- /dev/null
+++ b/react-project/src/styles/DropdownStyles.js
@@ -0,0 +1,61 @@
+import styled from "styled-components";
+
+export const DropdownWrapper = styled.div`
+ position: relative;
+ color: var(--gray800);
+`;
+
+export const Button = styled.button`
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ min-width: 130px;
+ min-height: 42px;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 26px;
+ padding: 7px 20px;
+ border: 1px solid var(--gray200);
+ border-radius: 12px;
+
+ @media (max-width: 767px) {
+ min-width: 42px;
+ justify-content: center;
+ padding: 0;
+ }
+`;
+
+export const OptionList = styled.ul`
+ display: none;
+ position: absolute;
+ width: 100%;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 26px;
+ margin-top: 8px;
+ background-color: var(--white);
+ border: 1px solid var(--gray200);
+ border-radius: 12px;
+
+ &.active {
+ display: block;
+ }
+
+ @media (max-width: 767px) {
+ right: 0;
+ min-width: 130px;
+ }
+`;
+
+export const Option = styled.li`
+ min-height: 42px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-bottom: 1px solid var(--gray200);
+ cursor: pointer;
+
+ &:last-child {
+ border-bottom: none;
+ }
+`;
diff --git a/react-project/src/styles/FormCommonStyles.js b/react-project/src/styles/FormCommonStyles.js
new file mode 100644
index 00000000..687ed49d
--- /dev/null
+++ b/react-project/src/styles/FormCommonStyles.js
@@ -0,0 +1,45 @@
+import styled from "styled-components";
+
+export const Label = styled.label`
+ display: block;
+ font-weight: 700;
+ font-size: 18px;
+ line-height: 26px;
+ color: var(--gray800);
+ margin-top: 24px;
+ margin-bottom: 16px;
+`;
+
+export const Input = styled.input`
+ width: 100%;
+ height: 56px;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 26px;
+ color: var(--gray800);
+ padding: 16px 24px;
+ border-radius: 12px;
+ background-color: var(--gray100);
+
+ &::placeholder {
+ color: var(--gray400);
+ }
+`;
+
+export const Textarea = styled.textarea`
+ width: 100%;
+ height: 282px;
+ font-family: inherit;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 26px;
+ color: var(--gray800);
+ padding: 16px 24px;
+ border-radius: 12px;
+ background-color: var(--gray100);
+ resize: none;
+
+ &::placeholder {
+ color: var(--gray400);
+ }
+`;
\ No newline at end of file
diff --git a/react-project/src/styles/GlobalStyle.js b/react-project/src/styles/GlobalStyle.js
new file mode 100644
index 00000000..997a10c9
--- /dev/null
+++ b/react-project/src/styles/GlobalStyle.js
@@ -0,0 +1,29 @@
+import { createGlobalStyle } from 'styled-components';
+
+const GlobalStyle = createGlobalStyle`
+ @charset "utf-8";*,::after,::before,button{margin:0;padding:0}*,::after,::before,button,h1,h2,h3,h4,h5,h6,input,select,table,textarea{box-sizing:border-box}article,aside,canvas,details,figcaption,figure,footer,header,mark,menu,nav,section,summary{display:block}button,input,select,textarea{background-color:#fff;border-radius:0;-webkit-appearance:none}a:focus,button,fieldset,iframe,img{border:0}li{list-style:none}button,img,input,select,textarea{vertical-align:middle}img{max-width:100%;height:auto}address,em,optgroup{font-style:normal}button,label{cursor:pointer}label{position:relative}button{background:0 0}a{text-decoration:none;color:inherit}a:focus{outline:0}caption,legend{font-size:0;width:0;height:0;line-height:0;overflow:hidden;text-indent:-9999px}table{width:100%;border-spacing:0}input,select, textarea{border:none;outline:none}
+
+ :root {
+ --red: #F74747;
+ --blue: #3692FF;
+ --white: #FFF;
+ --gray900: #111827;
+ --gray800: #1F2937;
+ --gray700: #374151;
+ --gray600: #4B5563;
+ --gray500: #6B7280;
+ --gray400: #9CA3AF;
+ --gray300: #D1D5DB;
+ --gray200: #E5E7EB;
+ --gray100: #F3F4F6;
+ --gray50: #F9FAFB;
+
+ --header-z-index: 999;
+ }
+
+ body {
+ font-family: "Pretendard", sans-serif;
+ }
+`;
+
+export default GlobalStyle;
\ No newline at end of file
diff --git a/react-project/src/styles/NavStyles.js b/react-project/src/styles/NavStyles.js
new file mode 100644
index 00000000..3bceeecd
--- /dev/null
+++ b/react-project/src/styles/NavStyles.js
@@ -0,0 +1,100 @@
+import { NavLink } from "react-router-dom";
+import styled from "styled-components";
+import profileDefaultImg from "../assets/profileDefaultImg.png";
+
+export const Header = styled.header`
+ position: sticky;
+ top: 0;
+ height: 70px;
+ background-color: var(--white);
+ border-bottom: 1px solid #DFDFDF;
+ z-index: var(--header-z-index);
+`;
+export const Container = styled.div`
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1920px;
+ width: 100%;
+ height: 100%;
+ margin: 0 auto;
+ padding: 0 200px;
+
+ @media (max-width: 1199px) {
+ padding: 0 24px;
+ }
+ @media (max-width: 767px) {
+ padding: 0 16px;
+ }
+`;
+
+export const Left = styled.div`
+ display: flex;
+ gap: 32px;
+
+ @media (max-width: 767px) {
+ gap: 8px;
+ }
+`;
+
+export const Logo = styled(NavLink)`
+ width: 153px;
+ @media (max-width: 767px) {
+ width: 81px;
+ }
+`;
+
+export const LogoDesktopImg = styled.img`
+ @media (max-width: 767px) {
+ display: none;
+ }
+`;
+
+export const LogoMobileImg = styled.img`
+ display: none;
+
+ @media (max-width: 767px) {
+ display: block;
+ }
+`;
+
+export const MenuList = styled.ul`
+ display: flex;
+ align-items: center;
+
+ @media (max-width: 767px) {
+ gap: 8px;
+ }
+`;
+
+export const MenuItemLink = styled(NavLink)`
+ font-weight: 700;
+ font-size: 18px;
+ line-height: 26px;
+ text-align: center;
+ vertical-align: middle;
+ color: #4B5563;
+ padding: 0 15px;
+
+ &.active {
+ color: var(--blue);
+ }
+
+ @media (max-width: 767px) {
+ font-size: 16px;
+ padding: 0;
+ }
+`;
+
+export const MyProfile = styled.div`
+
+`;
+
+export const ProfileImg = styled.button`
+ width: 40px;
+ height: 40px;
+ background-image: url(${profileDefaultImg});
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-position: center;
+`;
\ No newline at end of file
diff --git a/react-project/src/styles/PaginationStyles.js b/react-project/src/styles/PaginationStyles.js
new file mode 100644
index 00000000..e1df7eea
--- /dev/null
+++ b/react-project/src/styles/PaginationStyles.js
@@ -0,0 +1,59 @@
+import styled from "styled-components";
+
+export const PaginationWrap = styled.div`
+ display: flex;
+ justify-content: center;
+ margin-top: 43px;
+ margin-bottom: 58px;
+
+ @media (max-width: 1199px) {
+ margin-top: 40px;
+ margin-bottom: 72px;
+ }
+
+ @media (max-width: 767px) {
+ margin-bottom: 35px;
+ }
+`;
+
+export const PaginationList = styled.ul`
+ display: flex;
+ gap: 4px;
+`;
+
+export const PaginationItem = styled.li`
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 40px;
+ height: 40px;
+ border: 1px solid #E5E7EB;
+ border-radius: 40px;
+
+ &.active {
+ background-color: var(--blue);
+
+ button {
+ color: var(--white);
+ }
+ }
+
+ &.prevItem, &.nextItem {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ }
+
+ &.nextItem img {
+ transform: rotate(-180deg);
+ }
+`;
+export const PaginationButton = styled.button`
+ width: 100%;
+ height: 100%;
+ font-weight: 600;
+ font-size: 16px;
+ color: var(--gray500);
+
+
+`;
\ No newline at end of file
diff --git a/react-project/src/styles/ProductCommonStyles.js b/react-project/src/styles/ProductCommonStyles.js
new file mode 100644
index 00000000..59e5a59e
--- /dev/null
+++ b/react-project/src/styles/ProductCommonStyles.js
@@ -0,0 +1,35 @@
+import styled from "styled-components";
+
+export const Container = styled.div`
+ max-width: 1200px;
+ padding: 23px 24px 0;
+ margin: 0 auto;
+
+ @media (max-width: 767px) {
+ padding: 17px 15px 0;
+ }
+`;
+
+export const ListTitle = styled.div`
+ font-weight: 700;
+ font-size: 20px;
+ line-height: 32px;
+ color: var(--gray900);
+`;
+
+export const TagList = styled.ul`
+ display: flex;
+`;
+
+export const Tag = styled.li`
+ display: inline-flex;
+ align-items: center;
+ gap: 8px;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 26px;
+ color: var(--gray800);
+ padding: 5px 12px 5px 16px;
+ background-color: var(--gray100);
+ border-radius: 26px;
+`;
diff --git a/react-project/src/styles/ProductDetailStyles.js b/react-project/src/styles/ProductDetailStyles.js
new file mode 100644
index 00000000..5917ab50
--- /dev/null
+++ b/react-project/src/styles/ProductDetailStyles.js
@@ -0,0 +1,197 @@
+import styled from "styled-components";
+import { TagList } from "./ProductCommonStyles";
+
+export const DetailWrap = styled.div`
+ display: flex;
+ gap: 24px;
+ padding: 5px 0;
+
+ @media (max-width: 1199px) {
+ gap: 16px;
+ padding: 0;
+ }
+ @media (max-width: 767px) {
+ flex-direction: column;
+ }
+`;
+
+export const DetailImg = styled.img`
+ width: 486px;
+ height: 486px;
+ aspect-ratio: 1 / 1;
+ object-fit: cover;
+ border-radius: 28.59px;
+
+ @media (max-width: 1199px) {
+ width: 340px;
+ height: 340px;
+ border-radius: 20px;
+ }
+
+ @media (max-width: 767px) {
+ width: 100vw;
+ height: auto;
+ border-radius: 12px;
+ }
+`;
+
+export const DetailTxtWrap = styled.div`
+ flex-grow: 1;
+`;
+
+export const DetailTxtTop = styled.div`
+ color: var(--gray800);
+ padding-bottom: 16px;
+ border-bottom: 1px solid var(--gray200);
+`;
+
+export const DetailName = styled.h2`
+ font-weight: 600;
+ font-size: 24px;
+ line-height: 32px;
+ margin-bottom: 16px;
+
+ @media (max-width: 1199px) {
+ font-size: 20px;
+ margin-bottom: 8px;
+ }
+
+ @media (max-width: 767px) {
+ font-size: 16px;
+ line-height: 26px;
+ }
+`;
+
+export const DetailPrice = styled.p`
+ font-weight: 600;
+ font-size: 40px;
+ line-height: 100%;
+
+ @media (max-width: 1199px) {
+ font-size: 32px;
+ line-height: 42px;
+ }
+
+ @media (max-width: 767px) {
+ font-size: 24px;
+ line-height: 32px;
+ }
+`;
+
+export const DetailInfoList = styled.dl`
+ color: var(--gray600);
+ padding-top: 24px;
+
+ @media (max-width: 1199px) {
+ padding-top: 16px;
+ }
+`;
+
+export const DetailInfoTitle = styled.dt`
+ font-weight: 600;
+ font-size: 16px;
+ line-height: 26px;
+ margin-bottom: 16px;
+
+ @media (max-width: 1199px) {
+ font-size: 14px;
+ line-height: 24px;
+ margin-bottom: 8px;
+ }
+`;
+
+export const DetailDesc = styled.dd`
+ font-weight: 400;
+ font-size: 16px;
+ line-height: 26px;
+
+ & + dt {
+ margin-top: 24px;
+ }
+`;
+
+export const LocalTagList = styled(TagList)`
+ gap: 8px;
+`;
+
+export const DetailTxtBottom = styled.div`
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-top: 62px;
+
+ @media (max-width: 1199px) {
+ margin-top: 40px;
+ }
+`;
+
+export const DetailOwnerWrapper = styled.div`
+ display: flex;
+ align-items: center;
+ gap: 16px;
+`;
+
+export const DetailOwnerImg = styled.img`
+ width: 40px;
+ height: 40px;
+ aspect-ratio: 1 / 1;
+ object-fit: cover;
+ border-radius: 100%;
+`;
+
+export const DetailNicknameWrap = styled.div`
+ display: flex;
+ flex-direction: column;
+ gap: 2px;
+`;
+
+export const DetailOwnerNickname = styled.span`
+ font-weight: 500;
+ font-size: 14px;
+ line-height: 24px;
+ color: var(--gray600);
+`;
+export const DetailDate = styled.span`
+ font-weight: 400;
+ font-size: 14px;
+ line-height: 24px;
+ color: var(--gray400);
+`;
+
+export const DetailFavoritButton = styled.button`
+ position: relative;
+ display: inline-flex;
+ align-items: center;
+ gap: 4px;
+ padding: 4px 12px;
+ border-radius: 35px;
+ border: 1px solid var(--gray200);
+
+ &:before {
+ content: '';
+ position: absolute;
+ top: 50%;
+ left: -24px;
+ transform: translateY(-50%);
+ width: 1px;
+ height: calc(100% - 6px);
+ background-color: var(--gray200);
+ }
+`;
+
+export const DetailFavoritImg = styled.img`
+ width: 32px;
+ height: 32px;
+
+ @media (max-width: 1199px) {
+ width: 24px;
+ height: 24px;
+ }
+`;
+
+export const DetailFavoritCount = styled.span`
+ font-weight: 500;
+ font-size: 16px;
+ line-height: 26px;
+ color: var(--gray500);
+`;
\ No newline at end of file
diff --git a/react-project/src/styles/ProductInquiryStyles.js b/react-project/src/styles/ProductInquiryStyles.js
new file mode 100644
index 00000000..832722d6
--- /dev/null
+++ b/react-project/src/styles/ProductInquiryStyles.js
@@ -0,0 +1,221 @@
+import styled from "styled-components";
+import { Textarea } from "./FormCommonStyles";
+import { DefaultButton } from "./ButtonStyles";
+import moreVerticalIcon from "../assets/moreVerticalIcon.svg";
+
+export const InquirySectionWrap = styled.div`
+ display: flex;
+ flex-direction: column;
+ gap: 24px;
+`;
+
+export const InquiryForm = styled.form`
+ display: inline-block;
+ width: 100%;
+`;
+
+export const InquiryFormTitle = styled.div`
+ font-weight: 600;
+ font-size: 16px;
+ line-height: 26px;
+ margin-bottom: 9px;
+
+ @media (max-width: 767px) {
+ margin-bottom: 16px;
+ }
+`;
+
+export const InquiryFormTextarea = styled(Textarea)`
+ height: 104px;
+ margin-bottom: 16px;
+
+ @media (max-width: 767px) {
+ height: 129px;
+ font-size: 14px;
+ line-height: 24px;
+ }
+`;
+
+export const InquiryFormButton = styled(DefaultButton)`
+ float: right;
+`;
+
+export const CommentWrap = styled.div`
+ margin-bottom: 64px;
+
+ @media (max-width: 1199px) {
+ margin-bottom: 47px;
+ }
+ @media (max-width: 767px) {
+ margin-bottom: 40px;
+ }
+`;
+
+export const CommentItem = styled.li`
+ position: relative;
+ padding-bottom: 12px;
+ border-bottom: 1px solid var(--gray300);
+
+ & + & {
+ margin-top: 24px;
+ }
+
+ @media (max-width: 1199px) {
+ padding-bottom: 9px;
+ }
+
+ @media (max-width: 767px) {
+ padding-bottom: 12px;
+ & + & {
+ margin-top: 16px;
+ }
+ }
+`;
+
+export const CommentTextarea = styled(Textarea)`
+ height: 80px;
+ margin-bottom: 23px;
+
+ @media (max-width: 1199px) {
+ font-size: 14px;
+ line-height: 24px;
+ }
+`;
+
+export const CommentContent = styled.p`
+ font-weight: 400;
+ font-size: 14px;
+ line-height: 24px;
+ color: var(--gray800);
+ margin-bottom: 24px;
+`;
+
+export const CommentProfileWrap = styled.div`
+ display: flex;
+ gap: 8px;
+`;
+
+export const CommentProfileImg = styled.img`
+ width: 32px;
+ height: 32px;
+ aspect-ratio: 1 / 1;
+ object-fit: cover;
+ border-radius: 100%;
+`;
+
+export const CommentNicknameWrap = styled.div`
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+`;
+
+export const CommentNickname = styled.span`
+ font-weight: 400;
+ font-size: 12px;
+ line-height: 18px;
+ color: var(--gray600);
+`;
+
+export const CommentDate = styled.span`
+ font-weight: 400;
+ font-size: 12px;
+ line-height: 18px;
+ color: var(--gray400);
+`;
+
+export const CommentMenu = styled.div`
+ position: absolute;
+ top: 0;
+ right: 0;
+`;
+
+export const CommentMenuButton = styled.button`
+ width: 24px;
+ height: 24px;
+ background: url("${moreVerticalIcon}") no-repeat center / contain; // 이미지 안나와서 경로 옮김
+`;
+
+export const CommentOptionsMenu = styled.ul`
+ z-index: 1;
+ display: none;
+ position: absolute;
+ right: 0;
+ width: 149px;
+ font-size: 16px;
+ font-weight: 400;
+ line-height: 26px;
+ margin-top: 10px;
+ background-color: var(--white);
+ border: 1px solid var(--gray300);
+ border-radius: 12px;
+
+ &.active {
+ display: block;
+ }
+
+ @media (max-width: 767px) {
+ right: 0;
+ width: 102px;
+ font-size: 14px;
+ line-height: 24px;
+ margin-top: 11px;
+ border-radius: 8px;
+ }
+`;
+
+export const CommentUpdateMenu = styled.div`
+ z-index: 1;
+ position: absolute;
+ right: 0;
+ display: flex;
+ gap: 4px;
+ padding: 2.5px 0;
+ margin-top: -4.75px;
+`;
+
+export const CommentOption = styled.li`
+ min-height: 46px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-bottom: 1px solid var(--gray300);
+ cursor: pointer;
+
+ &:first-child {
+ border-radius: 12px 12px 0 0;
+ }
+
+ &:last-child {
+ border-bottom: none;
+ border-radius: 0 0 12px 12px;
+ }
+
+ &:hover {
+ background-color: var(--gray100);
+ }
+
+ @media (max-width: 767px) {
+ min-height: 45px;
+ }
+`;
+
+export const InquiryEmptyWrap = styled.div`
+ font-weight: 400;
+ font-size: 16px;
+ line-height: 26px;
+ color: var(--gray400);
+ text-align: center;
+ margin-bottom: 48px;
+`;
+
+export const InquiryEmpty = styled.div`
+ display: inline-flex;
+ flex-direction: column;
+ gap: 8px;
+`;
+
+export const InquiryEmptyImg = styled.img`
+ @media (max-width: 1199px) {
+ width: 140px;
+ }
+`;
diff --git a/react-project/src/styles/ProductListItemStyles.js b/react-project/src/styles/ProductListItemStyles.js
new file mode 100644
index 00000000..e807512c
--- /dev/null
+++ b/react-project/src/styles/ProductListItemStyles.js
@@ -0,0 +1,114 @@
+import styled, { css } from "styled-components"
+import { Link } from 'react-router-dom';
+
+const gapStyles = {
+ bestItemList: css`
+ gap: 24px;
+
+ @media (max-width: 1199px) {
+ gap: 10px;
+ }
+
+ @media (max-width: 767px) {
+ gap: 0;
+ }
+ `,
+ itemList: css`
+ gap: 40px 24px;
+
+ @media (max-width: 1199px) {
+ gap: 40px 16px;
+ }
+
+ @media (max-width: 767px) {
+ gap: 32px 8px;
+ }
+ `,
+};
+
+export const ProductListWrapper = styled.ul`
+ display: flex;
+ flex-wrap: wrap;
+
+ /* variant 스타일 자동 적용 */
+ ${({ variant }) => gapStyles[variant]}
+`;
+
+const ItemGapStyles = {
+ bestItemList: css`
+ width: calc((100% - (24px * 3)) / 4);
+
+ @media (max-width: 1199px) {
+ width: calc((100% - 10px) / 2);
+ }
+
+ @media (max-width: 767px) {
+ width: 100%;
+ }
+ `,
+ itemList: css`
+ @media (max-width: 1199px) {
+ width: calc((100% - (16px * 2)) / 3);
+ }
+
+ @media (max-width: 767px) {
+ width: calc((100% - 8px) / 2);
+ }
+ `,
+};
+
+export const ListItem = styled.li`
+ width: calc((100% - (24px * 4)) / 5);
+ color: var(--gray800);
+
+ /* variant 스타일 자동 적용 */
+ ${({ variant }) => ItemGapStyles[variant]}
+`;
+
+export const ListItemLink = styled(Link)`
+ display: block;
+ width: 100%;
+ height: 100%;
+`;
+
+export const ListItemImg = styled.img`
+ aspect-ratio: 1 / 1;
+ object-fit: cover;
+ width: 100%;
+ min-height: 221px;
+ object-fit: cover;
+ margin-bottom: 16px;
+ border-radius: 16px;
+`;
+
+export const ListItemName = styled.div`
+ font-weight: 500;
+ font-size: 14px;
+ line-height: 24px;
+ margin-bottom: 6px;
+`;
+
+export const ListItemPrice = styled.div`
+ font-weight: 700;
+ font-size: 16px;
+ line-height: 26px;
+ margin-bottom: 6px;
+`;
+
+export const ListItemFavoritButton = styled.button`
+ display: inline-flex;
+ align-items: center;
+ gap: 4px;
+`;
+
+export const FavoritButtonImg = styled.img`
+ width: 16px;
+ height: 16px;
+`;
+
+export const FavoritButtonCount = styled.span`
+ font-weight: 500;
+ font-size: 12px;
+ line-height: 18px;
+ color: var(--gray600);
+`;
\ No newline at end of file
diff --git a/react-project/src/styles/ProductListStyles.js b/react-project/src/styles/ProductListStyles.js
new file mode 100644
index 00000000..b9755e3d
--- /dev/null
+++ b/react-project/src/styles/ProductListStyles.js
@@ -0,0 +1,33 @@
+import styled from "styled-components";
+
+export const ProductListBox = styled.section`
+ & + & {
+ margin-top: 40px;
+ @media (max-width: 767px) {
+ margin-top: 24px;
+ }
+ }
+`;
+
+export const TitleBox = styled.div`
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 16px;
+
+ @media (max-width: 767px) {
+ flex-wrap: wrap;
+ gap: 8px;
+ }
+`;
+
+export const SearchSelectBox = styled.div`
+ display: flex;
+ gap: 12px;
+
+ @media (max-width: 767px) {
+ justify-content: space-between;
+ gap: 14px;
+ width: 100%;
+ }
+`;
\ No newline at end of file
diff --git a/react-project/src/styles/ProductStyles.js b/react-project/src/styles/ProductStyles.js
new file mode 100644
index 00000000..e6e5ad11
--- /dev/null
+++ b/react-project/src/styles/ProductStyles.js
@@ -0,0 +1,25 @@
+import styled from "styled-components";
+
+export const ButtonWrap = styled.div`
+ text-align: center;
+ margin-bottom: 222px;
+
+ @media (max-width: 1199px) {
+ margin-bottom: 243px;
+ }
+ @media (max-width: 767px) {
+ margin-bottom: 65px;
+ }
+`;
+
+export const Divider = styled.div`
+ margin: 40px 0;
+ border-bottom: 1px solid var(--gray200);
+
+ @media (max-width: 1199px) {
+ margin: 32px 0 40px;
+ }
+ @media (max-width: 767px) {
+ margin: 24px 0;
+ }
+`;
\ No newline at end of file
diff --git a/react-project/src/styles/SearchStyles.js b/react-project/src/styles/SearchStyles.js
new file mode 100644
index 00000000..c1bb1e95
--- /dev/null
+++ b/react-project/src/styles/SearchStyles.js
@@ -0,0 +1,39 @@
+import styled from "styled-components";
+import searchIcon from "../assets/searchIcon.svg";
+
+export const SearchInputBox = styled.div`
+ position: relative;
+ display: flex;
+ align-items: center;
+ width: 325px;
+ height: 42px;
+ padding: 9px 16px 9px 44px;
+ border-radius: 12px;
+ background-color: var(--gray100);
+
+ &:before {
+ content: "";
+ position: absolute;
+ top: 50%;
+ left: 16px;
+ transform: translateY(-50%);
+ width: 24px;
+ height: 24px;
+ background: url("${searchIcon}") no-repeat center / 15px 15px;
+ }
+
+ @media (max-width: 767px) {
+ width: calc(100% - 14px - 42px);
+ }
+`;
+
+export const SearchInput = styled.input`
+ width: 100%;
+ background-color: transparent;
+
+ &:focus,
+ &:active {
+ outline: none;
+ border: none;
+ }
+`;
diff --git a/react-project/src/utils/axios.js b/react-project/src/utils/axios.js
new file mode 100644
index 00000000..40dd3757
--- /dev/null
+++ b/react-project/src/utils/axios.js
@@ -0,0 +1,7 @@
+import Axios from "axios";
+
+const axios = Axios.create({
+ baseURL: 'https://panda-market-api.vercel.app',
+});
+
+export default axios;
\ No newline at end of file
diff --git a/react-project/vercel.json b/react-project/vercel.json
new file mode 100644
index 00000000..1323cdac
--- /dev/null
+++ b/react-project/vercel.json
@@ -0,0 +1,8 @@
+{
+ "rewrites": [
+ {
+ "source": "/(.*)",
+ "destination": "/index.html"
+ }
+ ]
+}
diff --git a/react-project/vite.config.js b/react-project/vite.config.js
new file mode 100644
index 00000000..8b0f57b9
--- /dev/null
+++ b/react-project/vite.config.js
@@ -0,0 +1,7 @@
+import { defineConfig } from 'vite'
+import react from '@vitejs/plugin-react'
+
+// https://vite.dev/config/
+export default defineConfig({
+ plugins: [react()],
+})
diff --git a/signin.html b/signin.html
new file mode 100644
index 00000000..7badf783
--- /dev/null
+++ b/signin.html
@@ -0,0 +1,69 @@
+
+
+
+
+
+ 판다마켓
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/signup.html b/signup.html
new file mode 100644
index 00000000..986b68fb
--- /dev/null
+++ b/signup.html
@@ -0,0 +1,82 @@
+
+
+
+
+
+
판다마켓
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file