{"id":26556895,"url":"https://github.com/josephusdev/projecto-fulltech","last_synced_at":"2026-04-12T14:52:50.986Z","repository":{"id":282923640,"uuid":"908284205","full_name":"JosephusDev/projecto-fulltech","owner":"JosephusDev","description":"Aplicação web para gerenciamento de projectos da FullTech","archived":false,"fork":false,"pushed_at":"2025-03-17T16:44:42.000Z","size":1648,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-17T17:44:33.843Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://projecto-fulltech.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"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":null,"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-12-25T17:20:56.000Z","updated_at":"2025-03-17T16:44:46.000Z","dependencies_parsed_at":"2025-03-18T22:15:19.860Z","dependency_job_id":null,"html_url":"https://github.com/JosephusDev/projecto-fulltech","commit_stats":null,"previous_names":["josephusdev/projecto-fulltech"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Fprojecto-fulltech","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Fprojecto-fulltech/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Fprojecto-fulltech/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JosephusDev%2Fprojecto-fulltech/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JosephusDev","download_url":"https://codeload.github.com/JosephusDev/projecto-fulltech/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244952314,"owners_count":20537464,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-22T11:35:29.294Z","updated_at":"2026-04-12T14:52:45.954Z","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%2Fprojecto-fulltech","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjosephusdev%2Fprojecto-fulltech","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosephusdev%2Fprojecto-fulltech/lists"}