{"id":25980340,"url":"https://github.com/josephusdev/alugarcasa","last_synced_at":"2026-05-29T06:31:14.752Z","repository":{"id":259695298,"uuid":"879223008","full_name":"JosephusDev/alugarcasa","owner":"JosephusDev","description":"Website de aluguel de casas","archived":false,"fork":false,"pushed_at":"2024-12-27T19:07:51.000Z","size":1408,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-03T15:42:40.479Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://alugarcasa-mu.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JosephusDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-27T10:47:21.000Z","updated_at":"2025-01-28T10:07:38.000Z","dependencies_parsed_at":"2024-10-27T12:14:49.867Z","dependency_job_id":"d87f4a29-894a-4db9-a240-8580425d4d75","html_url":"https://github.com/JosephusDev/alugarcasa","commit_stats":null,"previous_names":["josephusdev/alugarcasa"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JosephusDev/alugarcasa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Falugarcasa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Falugarcasa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Falugarcasa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Falugarcasa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JosephusDev","download_url":"https://codeload.github.com/JosephusDev/alugarcasa/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Falugarcasa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33640627,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-05T07:34:18.924Z","updated_at":"2026-05-29T06:31:14.733Z","avatar_url":"https://github.com/JosephusDev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"```bash\nnpm create vite@latest\n```\n\n```bash\nnpm init @eslint/config@latest\n```\n\n```bash\nnpm install --save-dev eslint-config-prettier\n```\n\n```js\nimport globals from 'globals'\nimport pluginJs from '@eslint/js'\nimport tseslint from 'typescript-eslint'\nimport pluginReact from 'eslint-plugin-react'\nimport eslintConfigPrettier from 'eslint-eslint-prettier'\n\nexport default [\n  { files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] },\n  { languageOptions: { globals: globals.browser } },\n  { extends: ['eslint:recommended', 'plugin:react/recommended'] },\n  pluginJs.configs.recommended,\n  ...tseslint.configs.recommended,\n  pluginReact.configs.flat.recommended,\n  eslintConfigPrettier,\n]\n```\n\n```bash\nnpm install -D tailwindcss postcss autoprefixer\nnpx tailwindcss init -p\n```\n\n## tailwindcss.config.js\n\n```js\n/** @type {import('tailwindcss').Config} */\nexport default {\n  content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],\n  theme: {\n    extend: {},\n  },\n  plugins: [],\n}\n```\n\n## index.css\n\n```css\n@font-face {\n  font-family: 'Montserrat';\n  font-weight: normal;\n  src:\n    local('/Montserrat-Regular'),\n    url('./assets/fonts/Montserrat-Regular.ttf') format('truetype');\n}\n@font-face {\n  font-family: 'Montserrat';\n  font-weight: bold;\n  src:\n    local('/Montserrat-Bold'),\n    url('./assets/fonts/Montserrat-Bold.ttf') format('truetype');\n}\n\nhtml,\nbody {\n  font-family: 'Montserrat', sans-serif;\n}\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n```\n\n```tsx\nimport './index.css'\n\nfunction App() {\n  return \u003ch2 className='text-2xl font-bold'\u003eOlá Mundo\u003c/h2\u003e\n}\n\nexport default App\n```\n\n## tsconfig.json e dentro do compilerOptions em tsconfig.app.json\n\n```json\n  \"compilerOptions\": {\n    \"baseUrl\": \".\",\n    \"paths\": {\n      \"@/*\": [\"./src/*\"]\n    }\n  }\n```\n\n```bash\n# (pode resolver alguns erros de pastas de arquivos)\nnpm i -D @types/node\n```\n\n## vite.config.js\n\n```ts\nimport path from 'path'\nimport react from '@vitejs/plugin-react'\nimport { defineConfig } from 'vite'\n\nexport default defineConfig({\n  plugins: [react()],\n  resolve: {\n    alias: {\n      '@': path.resolve(__dirname, './src'),\n    },\n  },\n})\n```\n\n```bash\nnpx shadcn@latest init\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosephusdev%2Falugarcasa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjosephusdev%2Falugarcasa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosephusdev%2Falugarcasa/lists"}