feat: initialize React TypeScript Vite project
Set up a new React application using Vite with TypeScript support, including ESLint configuration, build tools, and project structure. Updated README with template documentation.
Showing
.gitignore
0 → 100644
.vite/deps/_metadata.json
0 → 100644
.vite/deps/package.json
0 → 100644
eslint.config.js
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
| { | |||
| "name": "react-crud-app", | |||
| "private": true, | |||
| "version": "0.0.0", | |||
| "type": "module", | |||
| "scripts": { | |||
| "dev": "vite", | |||
| "build": "tsc -b && vite build", | |||
| "lint": "eslint .", | |||
| "preview": "vite preview" | |||
| }, | |||
| "dependencies": { | |||
| "@tailwindcss/vite": "^4.1.18", | |||
| "axios": "^1.13.3", | |||
| "react": "^19.2.0", | |||
| "react-dom": "^19.2.0", | |||
| "react-router-dom": "^7.13.0", | |||
| "tailwindcss": "^4.1.18" | |||
| }, | |||
| "devDependencies": { | |||
| "@eslint/js": "^9.39.1", | |||
| "@types/node": "^24.10.1", | |||
| "@types/react": "^19.2.5", | |||
| "@types/react-dom": "^19.2.3", | |||
| "@vitejs/plugin-react": "^5.1.1", | |||
| "eslint": "^9.39.1", | |||
| "eslint-plugin-react-hooks": "^7.0.1", | |||
| "eslint-plugin-react-refresh": "^0.4.24", | |||
| "globals": "^16.5.0", | |||
| "typescript": "~5.9.3", | |||
| "typescript-eslint": "^8.46.4", | |||
| "vite": "^7.2.4" | |||
| } | |||
| } |
public/vite.svg
0 → 100644
src/App.css
0 → 100644
src/App.tsx
0 → 100644
src/assets/react.svg
0 → 100644
src/index.css
0 → 100644
src/main.tsx
0 → 100644
src/pages/PostCreate.tsx
0 → 100644
src/pages/PostEdit.tsx
0 → 100644
src/pages/PostList.tsx
0 → 100644
src/pages/PostShow.tsx
0 → 100644
src/services/postService.ts
0 → 100644
src/styles.css
0 → 100644
src/types/Post.ts
0 → 100644
tsconfig.app.json
0 → 100644
tsconfig.json
0 → 100644
tsconfig.node.json
0 → 100644
vite.config.ts
0 → 100644
Please register or sign in to comment