Skip to content

Commit ef93f63

Browse files
committed
[week6/mission] 무한스크롤 부분 useInfiniteQuery로 무한스크롤 구현해보기 + 스켈레톤 UI
1 parent 85b18af commit ef93f63

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+4415
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import js from '@eslint/js'
2+
import globals from 'globals'
3+
import reactHooks from 'eslint-plugin-react-hooks'
4+
import reactRefresh from 'eslint-plugin-react-refresh'
5+
import tseslint from 'typescript-eslint'
6+
import { defineConfig, globalIgnores } from 'eslint/config'
7+
8+
export default defineConfig([
9+
globalIgnores(['dist']),
10+
{
11+
files: ['**/*.{ts,tsx}'],
12+
extends: [
13+
js.configs.recommended,
14+
tseslint.configs.recommended,
15+
reactHooks.configs['recommended-latest'],
16+
reactRefresh.configs.vite,
17+
],
18+
languageOptions: {
19+
ecmaVersion: 2020,
20+
globals: globals.browser,
21+
},
22+
},
23+
])
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>week6-mission1</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.tsx"></script>
12+
</body>
13+
</html>
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "week6-mission1",
3+
"private": true,
4+
"version": "0.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "tsc -b && vite build",
9+
"lint": "eslint .",
10+
"preview": "vite preview"
11+
},
12+
"dependencies": {
13+
"@hookform/resolvers": "^5.2.2",
14+
"@tailwindcss/vite": "^4.1.16",
15+
"@tanstack/react-query": "^5.90.7",
16+
"axios": "^1.13.2",
17+
"react": "^19.1.1",
18+
"react-dom": "^19.1.1",
19+
"react-hook-form": "^7.66.0",
20+
"react-intersection-observer": "^10.0.0",
21+
"react-router-dom": "^7.9.5",
22+
"tailwindcss": "^4.1.16",
23+
"zod": "^4.1.12"
24+
},
25+
"devDependencies": {
26+
"@eslint/js": "^9.36.0",
27+
"@tanstack/react-query-devtools": "^5.90.2",
28+
"@types/node": "^24.6.0",
29+
"@types/react": "^19.1.16",
30+
"@types/react-dom": "^19.1.9",
31+
"@vitejs/plugin-react": "^5.0.4",
32+
"eslint": "^9.36.0",
33+
"eslint-plugin-react-hooks": "^5.2.0",
34+
"eslint-plugin-react-refresh": "^0.4.22",
35+
"globals": "^16.4.0",
36+
"typescript": "~5.9.3",
37+
"typescript-eslint": "^8.45.0",
38+
"vite": "^7.1.7"
39+
}
40+
}

0 commit comments

Comments
 (0)