{"id":13733215,"url":"https://github.com/willianjusten/nba-remix","last_synced_at":"2025-04-08T03:12:12.341Z","repository":{"id":40465408,"uuid":"454997695","full_name":"willianjusten/nba-remix","owner":"willianjusten","description":"A simple app to show NBA games and scores/details.","archived":false,"fork":false,"pushed_at":"2023-12-20T00:12:48.000Z","size":1282,"stargazers_count":217,"open_issues_count":14,"forks_count":31,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-31T17:22:36.536Z","etag":null,"topics":["nba","remix","typescript"],"latest_commit_sha":null,"homepage":"https://nba.willianjusten.com.br","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/willianjusten.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":"2022-02-03T01:50:04.000Z","updated_at":"2025-03-13T14:13:14.000Z","dependencies_parsed_at":"2025-01-15T04:32:18.091Z","dependency_job_id":"1d4199eb-8dc5-45be-9490-3f527daf3aa7","html_url":"https://github.com/willianjusten/nba-remix","commit_stats":{"total_commits":106,"total_committers":14,"mean_commits":7.571428571428571,"dds":0.5471698113207547,"last_synced_commit":"120edd03f18c08fc3b1635349ad2cdbe6ee4486f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willianjusten%2Fnba-remix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willianjusten%2Fnba-remix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willianjusten%2Fnba-remix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willianjusten%2Fnba-remix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/willianjusten","download_url":"https://codeload.github.com/willianjusten/nba-remix/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247767236,"owners_count":20992548,"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":["nba","remix","typescript"],"created_at":"2024-08-03T03:00:39.485Z","updated_at":"2025-04-08T03:12:12.323Z","avatar_url":"https://github.com/willianjusten.png","language":"TypeScript","funding_links":[],"categories":["Build with Remix"],"sub_categories":[],"readme":"## NBA Remix\n\n[![ci](https://github.com/willianjusten/nba-remix/actions/workflows/ci.yml/badge.svg)](https://github.com/willianjusten/nba-remix/actions/workflows/ci.yml)\n\n\u003e A simple app to show NBA games and scores/details.\n\n## Deployment\n\nAfter having run the `create-remix` command and selected \"Vercel\" as a deployment target, you only need to [import your Git repository](https://vercel.com/new) into Vercel, and it will be deployed.\n\nIf you'd like to avoid using a Git repository, you can also deploy the directory by running [Vercel CLI](https://vercel.com/cli):\n\n```sh\nnpm i -g vercel\nvercel\n```\n\nIt is generally recommended to use a Git repository, because future commits will then automatically be deployed by Vercel, through its [Git Integration](https://vercel.com/docs/concepts/git).\n\n## Development\n\nTo run your Remix app locally, make sure your project's local dependencies are installed:\n\n```sh\nnpm install\n```\n\nAfterwards, start the Remix development server like so:\n\n```sh\nnpm run dev\n```\n\nOpen up [http://localhost:3000](http://localhost:3000) and you should be ready to go!\n\nIf you're used to using the `vercel dev` command provided by [Vercel CLI](https://vercel.com/cli) instead, you can also use that, but it's not needed.\n\n## Pre-commit hook\n\nThis project uses [husky](https://www.npmjs.com/package/husky) for pre-commits.\n\nTo disable it, add `export HUSKY_SKIP_HOOKS=1` to your shell configuration file (`.zshrc`, `.bashrc`).\n\n## Writing Components\n\nThe project favors function components using `function` and avoid using `export default`. Also, always prefer to use `type` instead of `interface`.\n\nWhen creating a component then the coding style adopted by the project is like this:\n\n```js\nexport type MyComponentProps = {\n  myComponentProp?: string,\n}\n\nexport function MyComponent({ myComponentProp }: MyComponentProps) {\n  return \u003c\u003eMyComponent\u003c/\u003e\n}\n```\n\n## Maintainers\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\n      \u003ca href=\"https://github.com/adeonir\"\u003e\n        \u003cimg src=\"https://github.com/adeonir.png?v=4?s=100\" width=\"100px;\" alt=\"Adeonir Kohl\" /\u003e\n        \u003cbr /\u003e\n        \u003csub\u003e\n          \u003cb\u003e\n            Adeonir Kohl\n          \u003c/b\u003e\n        \u003c/sub\u003e\n      \u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\n      \u003ca href=\"https://github.com/fsilvaco\"\u003e\n        \u003cimg src=\"https://github.com/fsilvaco.png?v=4?s=100\" width=\"100px;\" alt=\"Flávio Silva\" /\u003e\n        \u003cbr /\u003e\n        \u003csub\u003e\n          \u003cb\u003e\n            Flávio Silva\n          \u003c/b\u003e\n        \u003c/sub\u003e\n      \u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\n      \u003ca href=\"https://github.com/helderberto\"\u003e\n        \u003cimg src=\"https://github.com/helderberto.png?v=4?s=100\" width=\"100px;\" alt=\"Helder Berto\" /\u003e\n        \u003cbr /\u003e\n        \u003csub\u003e\n          \u003cb\u003e\n            Helder Berto\n          \u003c/b\u003e\n        \u003c/sub\u003e\n      \u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\n      \u003ca href=\"https://github.com/willianjusten\"\u003e\n        \u003cimg src=\"https://github.com/willianjusten.png?v=4?s=100\" width=\"100px;\" alt=\"Willian Justen\" /\u003e\n        \u003cbr /\u003e\n        \u003csub\u003e\n          \u003cb\u003e\n            Willian Justen\n          \u003c/b\u003e\n        \u003c/sub\u003e\n      \u003c/a\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwillianjusten%2Fnba-remix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwillianjusten%2Fnba-remix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwillianjusten%2Fnba-remix/lists"}