← スキル一覧に戻る

frontend-tech-stack
by allenlin90
⭐ 1🍴 0📅 2026年1月24日
SKILL.md
name: frontend-tech-stack description: Provides standards for the frontend application technology stack. This skill should be used when setting up new frontend projects or upgrading existing ones with React 19, Vite, and Tailwind v4.
Frontend Tech Stack
This skill defines the standard technology stack for all frontend applications (erify_creators, erify_studios, etc.) in the project.
Core Core Technologies
| Category | Technology | Version | Notes |
|---|---|---|---|
| Framework | React | 19.x | Use functional components and hooks. |
| Build Tool | Vite | 6.x | Fast HMR, uses @vitejs/plugin-react. |
| Styling | Tailwind CSS | 4.x | Use the @tailwindcss/vite plugin. |
| Routing | TanStack Router | 1.x | File-based routing, type-safe navigation. |
| State/Query | TanStack Query | 5.x | For async server state management. |
| I18n | Paraglide JS | 2.x | Type-safe internationalization. |
Project Structure
Frontend apps should follow this structure:
src/
├── routes/ # TanStack Router file-based routes
│ ├── __root.tsx # Root layout
│ ├── index.tsx # Homepage
│ └── feature.tsx # Feature route
├── components/ # App-specific components
├── hooks/ # App-specific hooks
├── lib/ # Utilities and API clients
├── main.tsx # Entry point
└── index.css # Global styles (Tailwind imports)
Configuration
Vite Config ("vite.config.ts")
Ensures Tailwind v4 and TanStack Router integration:
import tailwindcss from '@tailwindcss/vite';
import { tanstackRouter } from '@tanstack/router-plugin/vite';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [
tanstackRouter(),
react(),
tailwindcss(),
],
});
Tailwind Config (v4)
Tailwind v4 uses CSS-first configuration. Your index.css should look like:
@import "tailwindcss";
@theme {
--font-sans: "Inter", sans-serif;
/* Define custom tokens here */
}
Checklist
- Project is initialized with Vite + React + TypeScript.
- Uses Tailwind CSS v4 plugin.
- Uses TanStack Router for navigation.
- Depends on workspace packages (
@eridu/ui,@eridu/api-types) where appropriate.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です