Skip to content

Commit 4ffc568

Browse files
authored
Merge pull request #1 from Turtle-Hwan/react
React
2 parents 0d6c576 + 7bdf1bc commit 4ffc568

Some content is hidden

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

50 files changed

+3792
-39
lines changed

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
# dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# LinKU
2+
3+
- 건국대학교 학생들을 위한 교내외 관련 페이지 모음 크롬 확장 프로그램 LinKU

components.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.js",
8+
"css": "src/App.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib",
18+
"hooks": "@/hooks"
19+
},
20+
"iconLibrary": "lucide"
21+
}

dist/assets/icon128.png

6.72 KB
Loading

dist/assets/icon16.png

674 Bytes
Loading

dist/assets/icon32.png

1.52 KB
Loading

dist/assets/icon48.png

2.73 KB
Loading

dist/assets/icon64.png

3.63 KB
Loading

dist/index.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!doctype html>
2+
<html lang="ko">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic" rel="stylesheet" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<meta name="description" content="건국대학교 학생들을 위한 교내외 관련 페이지 모음 확장 프로그램 LinKU" />
9+
<title>LinKU</title>
10+
<!-- Google Tag Manager -->
11+
<!-- <script>(function (w, d, s, l, i) {
12+
w[l] = w[l] || []; w[l].push({
13+
'gtm.start':
14+
new Date().getTime(), event: 'gtm.js'
15+
}); var f = d.getElementsByTagName(s)[0],
16+
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
17+
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
18+
})(window, document, 'script', 'dataLayer', 'GTM-KDVJ99G2');</script> -->
19+
<!-- End Google Tag Manager -->
20+
<script type="module" crossorigin src="./index.js"></script>
21+
<link rel="stylesheet" crossorigin href="./index.css">
22+
</head>
23+
24+
<body>
25+
<!-- Google Tag Manager (noscript) -->
26+
<!-- <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KDVJ99G2" height="0" width="0"
27+
style="display:none;visibility:hidden"></iframe></noscript> -->
28+
<!-- End Google Tag Manager (noscript) -->
29+
<div id="root"></div>
30+
</body>
31+
32+
</html>

dist/index.js

+129
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/konkuk_logo.png

9.13 KB
Loading

dist/kuit_banner.png

34.2 KB
Loading

dist/manifest.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"manifest_version": 3,
3+
"name": "LinKU",
4+
"description": "건국대학교 학생들을 위한 교내외 관련 페이지 모음 확장 프로그램 LinKU",
5+
"version": "1.0.16",
6+
"action": {
7+
"default_popup": "index.html"
8+
},
9+
"permissions": [
10+
"tabs",
11+
"activeTab",
12+
"scripting"
13+
],
14+
"icons": {
15+
"16": "assets/icon16.png",
16+
"32": "assets/icon32.png",
17+
"48": "assets/icon48.png",
18+
"64": "assets/icon64.png",
19+
"128": "assets/icon128.png"
20+
},
21+
"content_security_policy": "script-src 'self' https://www.google-analytics.com; https://www.googletagmanager.com; object-src 'self'"
22+
}

eslint.config.js

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
7+
export default tseslint.config(
8+
{ ignores: ['dist'] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ['**/*.{ts,tsx}'],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
'react-hooks': reactHooks,
18+
'react-refresh': reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
'react-refresh/only-export-components': [
23+
'warn',
24+
{ allowConstantExport: true },
25+
],
26+
},
27+
},
28+
)

index.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!doctype html>
2+
<html lang="ko">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic" rel="stylesheet" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<meta name="description" content="건국대학교 학생들을 위한 교내외 관련 페이지 모음 확장 프로그램 LinKU" />
9+
<title>LinKU</title>
10+
<!-- Google Tag Manager -->
11+
<!-- <script>(function (w, d, s, l, i) {
12+
w[l] = w[l] || []; w[l].push({
13+
'gtm.start':
14+
new Date().getTime(), event: 'gtm.js'
15+
}); var f = d.getElementsByTagName(s)[0],
16+
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
17+
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
18+
})(window, document, 'script', 'dataLayer', 'GTM-KDVJ99G2');</script> -->
19+
<!-- End Google Tag Manager -->
20+
</head>
21+
22+
<body>
23+
<!-- Google Tag Manager (noscript) -->
24+
<!-- <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KDVJ99G2" height="0" width="0"
25+
style="display:none;visibility:hidden"></iframe></noscript> -->
26+
<!-- End Google Tag Manager (noscript) -->
27+
<div id="root"></div>
28+
<script type="module" src="/src/main.tsx"></script>
29+
</body>
30+
31+
</html>

manifest.json

-10
This file was deleted.

package.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "linku",
3+
"private": true,
4+
"version": "0.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "node scripts/updateVersion.js && tsc -b && vite build",
9+
"lint": "eslint .",
10+
"preview": "vite preview",
11+
"watch": "node scripts/updateVersion.js && tsc -b && vite build --watch"
12+
},
13+
"dependencies": {
14+
"@tailwindcss/vite": "^4.0.7",
15+
"@types/chrome": "^0.0.304",
16+
"class-variance-authority": "^0.7.1",
17+
"clsx": "^2.1.1",
18+
"embla-carousel-autoplay": "^8.5.2",
19+
"embla-carousel-react": "^8.5.2",
20+
"lucide-react": "^0.475.0",
21+
"react": "^19.0.0",
22+
"react-dom": "^19.0.0",
23+
"tailwind-merge": "^3.0.1",
24+
"tailwindcss-animate": "^1.0.7"
25+
},
26+
"devDependencies": {
27+
"@eslint/js": "^9.19.0",
28+
"@tailwindcss/postcss": "^4.0.7",
29+
"@types/node": "^22.13.4",
30+
"@types/react": "^19.0.8",
31+
"@types/react-dom": "^19.0.3",
32+
"@vitejs/plugin-react-swc": "^3.5.0",
33+
"autoprefixer": "^10.4.20",
34+
"eslint": "^9.19.0",
35+
"eslint-plugin-react-hooks": "^5.0.0",
36+
"eslint-plugin-react-refresh": "^0.4.18",
37+
"globals": "^15.14.0",
38+
"install": "^0.13.0",
39+
"postcss": "^8.5.3",
40+
"tailwindcss": "^4.0.7",
41+
"typescript": "~5.7.2",
42+
"typescript-eslint": "^8.22.0",
43+
"vite": "^6.1.0",
44+
"vite-plugin-svgr": "^4.3.0"
45+
}
46+
}

0 commit comments

Comments
 (0)