feat: 프로젝트 초기 설정 완료 - Vite + React + TypeScript, TailwindCSS + ShadCN UI, Zustand, 기본 타입 및 컴포넌트 구현

This commit is contained in:
JiWoong Sul
2025-06-19 16:47:43 +09:00
commit 6f4bc163a7
31 changed files with 5364 additions and 0 deletions

59
package.json Normal file
View File

@@ -0,0 +1,59 @@
{
"name": "sheeteasy-ai",
"private": true,
"version": "0.1.0",
"description": "AI-powered Excel file processor with local processing",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"preview": "vite preview",
"type-check": "tsc --noEmit"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"file-saver": "^2.0.5",
"lucide-react": "^0.468.0",
"luckyexcel": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sheetjs-style": "^0.15.8",
"tailwind-merge": "^2.5.4",
"xlsx": "^0.18.5",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/file-saver": "^2.0.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"vite": "^6.0.1"
},
"keywords": [
"excel",
"ai",
"spreadsheet",
"local-processing",
"privacy"
],
"author": "sheetEasy AI Team",
"license": "MIT"
}