├── .gitignore ├── README.md ├── _config.yml ├── app ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── contributing.md ├── data ├── companies │ ├── deepSearch.md │ ├── opgg.md │ └── toss.md ├── generate-db.js ├── package-lock.json └── package.json └── db.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/_config.yml -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/package.json -------------------------------------------------------------------------------- /app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/public/favicon.ico -------------------------------------------------------------------------------- /app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/public/index.html -------------------------------------------------------------------------------- /app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/public/logo192.png -------------------------------------------------------------------------------- /app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/public/logo512.png -------------------------------------------------------------------------------- /app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/public/manifest.json -------------------------------------------------------------------------------- /app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/public/robots.txt -------------------------------------------------------------------------------- /app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/src/App.css -------------------------------------------------------------------------------- /app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/src/App.js -------------------------------------------------------------------------------- /app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/src/App.test.js -------------------------------------------------------------------------------- /app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/src/index.css -------------------------------------------------------------------------------- /app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/src/index.js -------------------------------------------------------------------------------- /app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/src/logo.svg -------------------------------------------------------------------------------- /app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/src/reportWebVitals.js -------------------------------------------------------------------------------- /app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/app/src/setupTests.js -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/contributing.md -------------------------------------------------------------------------------- /data/companies/deepSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/data/companies/deepSearch.md -------------------------------------------------------------------------------- /data/companies/opgg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/data/companies/opgg.md -------------------------------------------------------------------------------- /data/companies/toss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/data/companies/toss.md -------------------------------------------------------------------------------- /data/generate-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/data/generate-db.js -------------------------------------------------------------------------------- /data/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/data/package-lock.json -------------------------------------------------------------------------------- /data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/data/package.json -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milooy/remote-or-flexible-work-company-in-korea/HEAD/db.json --------------------------------------------------------------------------------