{"id":24081990,"url":"https://github.com/marcoabcorrea/flight-search","last_synced_at":"2026-04-07T08:01:56.960Z","repository":{"id":120383189,"uuid":"136991703","full_name":"MarcoABCorrea/flight-search","owner":"MarcoABCorrea","description":"WIP","archived":false,"fork":false,"pushed_at":"2018-06-12T04:51:31.000Z","size":242,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-27T00:50:02.867Z","etag":null,"topics":["flight-search","react","typescript","webpack"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MarcoABCorrea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2018-06-11T23:27:00.000Z","updated_at":"2018-11-23T19:16:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"335d65af-d607-4ae9-a0e0-334428a4a2ce","html_url":"https://github.com/MarcoABCorrea/flight-search","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MarcoABCorrea/flight-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarcoABCorrea%2Fflight-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarcoABCorrea%2Fflight-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarcoABCorrea%2Fflight-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarcoABCorrea%2Fflight-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarcoABCorrea","download_url":"https://codeload.github.com/MarcoABCorrea/flight-search/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarcoABCorrea%2Fflight-search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31504897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["flight-search","react","typescript","webpack"],"created_at":"2025-01-09T23:44:46.198Z","updated_at":"2026-04-07T08:01:56.954Z","avatar_url":"https://github.com/MarcoABCorrea.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-webpack-stack\n\nUse this repository as a starting point for React-based UI applications.\n\n## Project Setup\n\nWe recommend using a JavaScript-based IDE (like WebStorm) as they provide code quality and syntax tooling supported as plugins, often right out of the box.\n\n### Setup Steps\n\n1. If you don't already have it, download and install NodeJS 6.4.0 or later. (Installing NodeJS will also install npm.)\n\n2. This project favors Yarn, so make sure you have the latest.\n\n  ```\n  $ npm install -g yarn@0.24.6\n  ```\n\n3. Install the build and application dependencies.\n\n  ```\n  $ yarn install\n  ```\n\n## Project Layout\n\nThe project contains the following configuration and application files.\n\n### Root Files\n\nAlso know as *dot* files, these are the build and the build configuration files for the application.\n\n * \u003ci\u003ebin/\u003c/i\u003e - Shell scripts for continuous integration and build environments.\n * \u003ci\u003e.babelrc\u003c/i\u003e - Configuration file for Babel preproccessor.\n * \u003ci\u003e.editorconfig\u003c/i\u003e - Configuration file for EditorConfig IDE plugin.\n * \u003ci\u003e.eslintr\u003c/i\u003ec - Linting rules for spec and build files.\n * \u003ci\u003ejest.config.js\u003c/i\u003e - Configuration file for Jest (test runner).\n * \u003ci\u003epackage.json\u003c/i\u003e - NPM / Yarn dependency configuration file, for\n build related dependencies. This defines all runnable scripts and commands.\n * \u003ci\u003etsconfig.json\u003c/i\u003e - Configuration file for the TypeScript compiler.\n * \u003ci\u003etslint.json\u003c/i\u003e - Linting rules for the TypeScript source code.\n * \u003ci\u003ewebpack.config.common.js\u003c/i\u003e - Webpack config for managing shared webpack configurations.\n * \u003ci\u003ewebpack.config.develop.js\u003c/i\u003e - Webpack config for local development.\n * \u003ci\u003ewebpack.config.prod.js\u003c/i\u003e - Webpack config for production builds.\n\n### Application Files\n\n The following directories contain the application code, including unit tests. They are intended to be kept as flat as possible with a BoF (birds of a feather) organization.\n\n```\nreact-seed\n│\n└───src\n│   │\n│   │\n│   └───subfolder1\n│       │   file111.tsx\n│       │   file111.spec.tsx\n│       │   ...\n│\n└───folder2\n    │   file021.tsx\n    │   file022.spec.tsx\n```\n\n## Tasks\n\nThis project uses webpack as the build tool, executed with NPM scripts. All available tasks are in the *scripts* section of *package.json*.\n\n### Development\n\nStart up a development server using\n[webpack-dev-server](https://github.com/webpack/webpack-dev-server)\nwhich watches for changes and re-deploys as needed.\n\n```\n$ yarn run develop\n```\n\nwebpack-dev-server automatically opens a browser window to ```localhost:9000```.\n\n### Production\n\nThis is the production build task for the project. Run it prior to deploying to an environment to build a production version of the application.\n\n```\n$ yarn run build\n```\n\n### Demo\n\nTo demo a production build locally on ```localhost:9000``` run:\n\n```\n$ yarn run serve\n```\n\n**Note:** We recommend running this command from the master branch or a tag. By default, this proxies with the webpack-dev-server proxy.\n\nThis task is also aliased as:\n\n```\n$ yarn start\n```\n\n### Tests\n\nTo execute unit tests run:\n\n```\n$ yarn run test\n```\n\nTo execute unit tests in TDD (Test-Driven Development) mode run:\n\n```\n$ yarn run test -- --watch\n```\n\nThis command uses \u003ci\u003ejest.config.json\u003c/i\u003e as a configuration file for unit tests. It will display a percentage of the files covered by the unit tests.\n\n## Dependency Management\n\nAll dependencies added or removed from the project must be done so through Yarn.\n\n### Add\n\n```bash\n# use --dev if it as devDependency\n$ yarn add \u003cpackage-name\u003e [--dev]\n```\n\n### Remove\n\n```\n$ yarn remove \u003cpackage-name\u003e\n```\n\n### Upgrade\n\n```\n$ yarn upgrade \u003cpackage-name\u003e\n```\n\n## LICENSE\nCopyright 2017 Kenzan, LLC - \u003chttp://kenzan.com\u003e\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcoabcorrea%2Fflight-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcoabcorrea%2Fflight-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcoabcorrea%2Fflight-search/lists"}