Skip to content

Commit a18af8c

Browse files
committed
[week8/mission] 미션 2 - Throttling을 활용하여 불필요한 호출 막아보기
1 parent f9b5713 commit a18af8c

Some content is hidden

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

72 files changed

+5727
-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: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
"lucide-react": "^0.553.0",
18+
"react": "^19.1.1",
19+
"react-dom": "^19.1.1",
20+
"react-hook-form": "^7.66.0",
21+
"react-intersection-observer": "^10.0.0",
22+
"react-router-dom": "^7.9.5",
23+
"tailwindcss": "^4.1.16",
24+
"zod": "^4.1.12"
25+
},
26+
"devDependencies": {
27+
"@eslint/js": "^9.36.0",
28+
"@tanstack/react-query-devtools": "^5.90.2",
29+
"@types/node": "^24.6.0",
30+
"@types/react": "^19.1.16",
31+
"@types/react-dom": "^19.1.9",
32+
"@vitejs/plugin-react": "^5.0.4",
33+
"eslint": "^9.36.0",
34+
"eslint-plugin-react-hooks": "^5.2.0",
35+
"eslint-plugin-react-refresh": "^0.4.22",
36+
"globals": "^16.4.0",
37+
"typescript": "~5.9.3",
38+
"typescript-eslint": "^8.45.0",
39+
"vite": "^7.1.7"
40+
}
41+
}

0 commit comments

Comments
 (0)