Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
dcae0cc
feature: next app init
six-standard Nov 19, 2024
b51a5ee
feature: 14로 다운그레이드
six-standard Nov 19, 2024
ed901ab
feature: init
six-standard Nov 21, 2024
17c92ab
feature: recovered eslint
six-standard Nov 22, 2024
2cfdfee
refactor: dependencies to devDependencies
six-standard Nov 22, 2024
20c3d9c
modify: pnpm peerdeps 자동 설치
six-standard Nov 22, 2024
fedb701
modify: env 무시 추가
six-standard Nov 22, 2024
589f90e
refactor: html lang en -> kr
six-standard Nov 23, 2024
7623ddd
feature: 폰트 적용
six-standard Nov 23, 2024
64101f3
modify: 테스트 일부 수정
six-standard Nov 23, 2024
c9eded9
feature: 컬러셋 추가
six-standard Nov 23, 2024
3354be8
modify: bold 폰트만 적용되는 오류 수정
six-standard Nov 23, 2024
8556144
modify: main 페이지 분리
six-standard Nov 23, 2024
4bf80bd
feature: 기본 입력 컴포넌트 추가
six-standard Nov 23, 2024
08f9cc3
feature: 로그인 페이지 퍼블리싱
six-standard Nov 23, 2024
362191e
refactor: gitignore new line 추가
six-standard Nov 24, 2024
b40b32e
refactor: 타입스크립트 규칙 추가
six-standard Nov 24, 2024
e1b3882
modify: 명령어 변경
six-standard Nov 24, 2024
4b038cc
feature: 필요한 라이브러리 추가
six-standard Nov 24, 2024
2d8affd
modify: readme 적용
six-standard Nov 24, 2024
bd43bb4
modify: strict 규칙 추가
six-standard Nov 24, 2024
226e2ff
feature: .env.simple 추가
six-standard Nov 24, 2024
8f7d9c1
feature: 필요한 api 추가 설치
six-standard Nov 24, 2024
6d9f957
modify: 일부 테스트 추가
six-standard Nov 24, 2024
170fa2c
modify: 로그인 페이지 이벤트 일부 적용
six-standard Nov 24, 2024
9c0faf6
refactor: 레이아웃 코드 정리
six-standard Nov 24, 2024
5ad1263
feature: api 인스턴스 정의
six-standard Nov 24, 2024
fe862c5
other: feature/init과 merge
six-standard Nov 24, 2024
762cc80
feature: 필요한 라이브러리 추가
six-standard Nov 26, 2024
a46e329
feature: Proxy 설정
six-standard Nov 26, 2024
dd783b2
modify: readme.md 수정
six-standard Nov 26, 2024
4eaab5c
feature: fetch mock 설정
six-standard Nov 28, 2024
f517971
feature: Login Test 제작
six-standard Nov 28, 2024
3517391
modify: Proxy 제거
six-standard Nov 28, 2024
aa17e50
feature: queryClient 관련 오류 수정
six-standard Nov 28, 2024
2b7af66
feature: 로그인 페이지 제작
six-standard Nov 28, 2024
5e7683e
modify: SSR / CSR 분리
six-standard Nov 28, 2024
3291549
Merge branch 'main' into feature/login
six-standard Nov 28, 2024
dce2bc3
modify: Input 마스킹 처리
six-standard Nov 28, 2024
bfa0bbc
modify: Metadata 추가
six-standard Nov 28, 2024
7225fec
modify: 토큰 전달 방식 변경
six-standard Nov 28, 2024
a185830
modify: 경로 관련 문제로 삭제
six-standard Nov 28, 2024
9da1f6c
modify: BASE_URL 안정성 강화
six-standard Nov 28, 2024
817b6ea
feature: 임시 요소 제작
six-standard Nov 28, 2024
25d9239
modify: queryClient 옵션 추가
six-standard Nov 28, 2024
8439aef
modify: 필요 없는 test 제거
six-standard Nov 28, 2024
f1d0f70
refactor: 네이밍 규칙 일관화
six-standard Nov 28, 2024
48ff0a7
refactor: 필요없는 텍스트 제거
six-standard Nov 28, 2024
1340245
modify: 일부 밀린 커밋 적용
six-standard Nov 28, 2024
360605b
modify: eslint-disable 제거
six-standard Nov 29, 2024
a76c825
modify: 네이밍 오타
six-standard Nov 29, 2024
bafe062
modify: new line 추가 자동화
six-standard Nov 29, 2024
97cba3f
refactor: 반복된 코드 정리
six-standard Nov 29, 2024
69ac83e
modify: 아직 타임아웃 기능이 없음
six-standard Nov 29, 2024
6959548
modify: include 오류 해결
six-standard Nov 29, 2024
ab6f0cf
modify: 컬러 팔레트 이름 변경
six-standard Nov 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEXT_PUBLIC_BASE_URL=<server's url here>
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"tabWidth": 2,
"printWidth": 80,
"arrowParens": "always",
"bracketSpacing": true
"bracketSpacing": true,
"proseWrap": "preserve"
}
13 changes: 9 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,15 @@ export default [
{
rules: {
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/promise-function-async': 'warn',
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/consistent-type-assertions': 'warn',
'@typescript-eslint/naming-convention': 'warn',
'@typescript-eslint/promise-function-async': 'error',
'@typescript-eslint/consistent-type-assertions': 'error',
'@typescript-eslint/naming-convention': 'off',
},
languageOptions: {
parserOptions: {
project: true,
tsconfigRootDir: import.meta.dirname,
},
},
},
];
3 changes: 3 additions & 0 deletions jest.setup.ts
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
import '@testing-library/jest-dom';
import fetchMock from 'jest-fetch-mock';

fetchMock.enableMocks();
14 changes: 11 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,22 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"lintTest": "eslint ./src/__test__",
"format": "prettier --check --ignore-path .gitignore --ignore-path pnpm-lock.yaml .",
"test": "jest",
"testLint": "eslint ./src/__test__"
"test": "jest"
},
"dependencies": {
"@tanstack/react-query": "^5.61.3",
"@testing-library/user-event": "^14.5.2",
"@types/js-cookie": "^3.0.6",
"jest-fetch-mock": "^3.0.3",
"js-cookie": "^3.0.5",
"next": "14.2.18",
"react": "^18",
"react-dom": "^18"
"react-dom": "^18",
"react-hook-form": "^7.53.2",
"react-toastify": "^10.0.6",
"return-fetch": "^0.4.6"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
Expand Down
Loading