feat: initial frontend data crawler project
parents
Showing
.gitignore
0 → 100644
.oxlintrc.json
0 → 100644
README.md
0 → 100644
index.html
0 → 100644
package.json
0 → 100644
| { | |||
| "name": "frontend", | |||
| "private": true, | |||
| "version": "0.0.0", | |||
| "type": "module", | |||
| "scripts": { | |||
| "dev": "vite", | |||
| "build": "tsc -b && vite build", | |||
| "lint": "oxlint", | |||
| "preview": "vite preview" | |||
| }, | |||
| "dependencies": { | |||
| "axios": "^1.18.1", | |||
| "lucide-react": "^1.23.0", | |||
| "react": "^19.2.7", | |||
| "react-dom": "^19.2.7", | |||
| "react-router-dom": "^7.18.1" | |||
| }, | |||
| "devDependencies": { | |||
| "@tailwindcss/vite": "^4.3.2", | |||
| "@types/node": "^24.13.2", | |||
| "@types/react": "^19.2.17", | |||
| "@types/react-dom": "^19.2.3", | |||
| "@vitejs/plugin-react": "^6.0.3", | |||
| "autoprefixer": "^10.5.2", | |||
| "oxlint": "^1.71.0", | |||
| "postcss": "^8.5.16", | |||
| "tailwindcss": "^4.3.2", | |||
| "typescript": "~6.0.2", | |||
| "vite": "^8.1.1" | |||
| } | |||
| } |
pnpm-lock.yaml
0 → 100644
This diff is collapsed.
public/favicon.svg
0 → 100644
public/icons.svg
0 → 100644
src/App.css
0 → 100644
src/App.tsx
0 → 100644
src/assets/hero.png
0 → 100644
12.8 KB
src/assets/react.svg
0 → 100644
src/assets/vite.svg
0 → 100644
src/context/AuthContext.tsx
0 → 100644
src/index.css
0 → 100644
src/main.tsx
0 → 100644
src/pages/Dashboard.tsx
0 → 100644
This diff is collapsed.
src/pages/JobDetail.tsx
0 → 100644
This diff is collapsed.
src/pages/Login.tsx
0 → 100644
src/pages/Logs.tsx
0 → 100644
src/pages/Profile.tsx
0 → 100644
src/pages/Register.tsx
0 → 100644
src/pages/Users.tsx
0 → 100644
src/services/api.ts
0 → 100644
tsconfig.app.json
0 → 100644
tsconfig.json
0 → 100644
tsconfig.node.json
0 → 100644
vite.config.ts
0 → 100644