-
Notifications
You must be signed in to change notification settings - Fork 40
[김태완] Sprint12 #347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jyh0521
merged 35 commits into
codeit-bootcamp-frontend:React-김태완
from
twtwkim:React-김태완-sprint11
Jan 13, 2025
The head ref may contain hidden characters: "React-\uAE40\uD0DC\uC644-sprint11"
Merged
[김태완] Sprint12 #347
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
b2e37bd
reset
hanseulhee 6f8bbb0
Merge branch 'codeit-bootcamp-frontend:main' into main
hanseulhee e11e25f
fix: 머지 후 브랜치 삭제 github action 수정
hanseulhee 212e864
env: workflows 폴더로 이동
hanseulhee 4dc5dd0
Merge pull request #237 from hanseulhee/fix-github-actions
withyj-codeit 4f28c49
merge
46fc96c
Merge branch 'React-김태완' of https://github.com/codeit-bootcamp-fronte…
3c44b82
react-query 설치
4bbbd4c
태그 스타일 수정
216ccd4
상품 등록 및 상세페이지 이동
bdd8a5d
유저정보 리덕스
e99b8c9
물품 상세 정보 리덕스
1041d04
문의하기 등록 기능
a3d3222
댓글 수정, 삭제 완료
dbf5a81
수정까지 완료
9110048
이미지 없을때 판다 이미지
2650a7b
react-toastify 적용
3e2abe6
스토리지 만료시 로그인 페이지로
754d9ac
헤더에 불필요 파일 삭제
44d89ef
clsx 적용
0eaede6
불필요 코드 제거
638434e
전체 버튼 호버 적용
3fd6ec7
next 작업사항 리액트로 마이그레이션 - AddBoard 추가
f86f2b7
boards 마이그레이션션
eee30af
마이그레이션_UI 완성
5266eec
자잘한 리팩토링
690e5b8
상품 좋아요 및 취소 완료
d9c6393
게시글 좋아요, 취소 기능 추가
ab6d389
게시글 수정 및 삭제 구현
cdfb267
게시글 댓글 상태 업데이트 및 토큰 관련 로직 수정
379ebfc
버그 잡기
84474c2
디바운스 적용
ca4117e
콘솔 삭제
8cf7085
빌드 전
32ad40c
Merge branch 'React-김태완-sprint12' into React-김태완-sprint11
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,54 +1,120 @@ | ||
| { | ||
|
|
||
| "name": "reacttotype", | ||
|
|
||
| "version": "0.1.0", | ||
|
|
||
| "private": true, | ||
|
|
||
| "dependencies": { | ||
|
|
||
| "@reduxjs/toolkit": "^2.4.0", | ||
|
|
||
| "@tanstack/react-query": "^5.62.16", | ||
|
|
||
| "@tanstack/react-query-devtools": "^5.62.16", | ||
|
|
||
| "@testing-library/jest-dom": "^5.17.0", | ||
|
|
||
| "@testing-library/react": "^13.4.0", | ||
|
|
||
| "@testing-library/user-event": "^13.5.0", | ||
|
|
||
| "@types/jest": "^27.5.2", | ||
|
|
||
| "@types/node": "^16.18.119", | ||
|
|
||
| "@types/react": "^18.3.12", | ||
|
|
||
| "@types/react-dom": "^18.3.1", | ||
|
|
||
| "axios": "^1.7.9", | ||
|
|
||
| "clsx": "^2.1.1", | ||
|
|
||
| "jwt-decode": "^4.0.0", | ||
|
|
||
| "lodash": "^4.17.21", | ||
|
|
||
| "react": "^18.3.1", | ||
|
|
||
| "react-dom": "^18.3.1", | ||
|
|
||
| "react-hook-form": "^7.53.2", | ||
|
|
||
| "react-redux": "^9.1.2", | ||
|
|
||
| "react-router-dom": "^6.28.0", | ||
|
|
||
| "react-scripts": "5.0.1", | ||
|
|
||
| "react-toastify": "^11.0.2", | ||
|
|
||
| "redux": "^5.0.1", | ||
|
|
||
| "typescript": "^4.9.5", | ||
|
|
||
| "web-vitals": "^2.1.4" | ||
|
|
||
| }, | ||
|
|
||
| "scripts": { | ||
|
|
||
| "start": "react-scripts start", | ||
|
|
||
| "build": "react-scripts build", | ||
|
|
||
| "test": "react-scripts test", | ||
|
|
||
| "eject": "react-scripts eject" | ||
|
|
||
| }, | ||
|
|
||
| "eslintConfig": { | ||
|
|
||
| "extends": [ | ||
|
|
||
| "react-app", | ||
|
|
||
| "react-app/jest" | ||
|
|
||
| ] | ||
|
|
||
| }, | ||
|
|
||
| "browserslist": { | ||
|
|
||
| "production": [ | ||
|
|
||
| ">0.2%", | ||
|
|
||
| "not dead", | ||
|
|
||
| "not op_mini all" | ||
|
|
||
| ], | ||
|
|
||
| "development": [ | ||
|
|
||
| "last 1 chrome version", | ||
|
|
||
| "last 1 firefox version", | ||
|
|
||
| "last 1 safari version" | ||
|
|
||
| ] | ||
|
|
||
| }, | ||
|
|
||
| "devDependencies": { | ||
|
|
||
| "@babel/plugin-proposal-private-property-in-object": "^7.21.11", | ||
|
|
||
| "@types/lodash": "^4.17.14", | ||
|
|
||
| "@types/react-router-dom": "^5.3.3" | ||
|
|
||
| } | ||
|
|
||
| } | ||
|
|
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. .env는 .gitignore에 추가해서 깃에 올라오지 않게 해주시는 것이 좋습니다. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| API_BASE_URL = https://panda-market-api.vercel.app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
혹시 일부러 개행을 해주신걸까요? package.json은 굳이 개행해주시지 않아도 괜찮습니다.