├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── backend_test.yml │ └── frontend_test.yml ├── .gitignore ├── README.md ├── backend ├── .gitignore ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── application.js │ │ │ ├── cable.js │ │ │ └── channels │ │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── greetings_controller.rb │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ └── concerns │ │ │ └── .keep │ └── views │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── spring │ ├── update │ └── yarn ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── content_security_policy.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ ├── new_framework_defaults_6_0.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── spring.rb │ └── storage.yml ├── db │ ├── schema.rb │ └── seeds.rb ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep ├── log │ └── .keep ├── prehook ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── robots.txt ├── test │ ├── application_system_test_case.rb │ ├── controllers │ │ └── .keep │ ├── fixtures │ │ ├── .keep │ │ └── files │ │ │ └── .keep │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ └── .keep │ ├── routing │ │ └── routing_test.rb │ ├── system │ │ └── .keep │ └── test_helper.rb ├── tmp │ └── .keep └── vendor │ └── .keep ├── docker-compose.yml └── frontend ├── .gitignore ├── jest.config.js ├── package-lock.json ├── package.json ├── src ├── App.css ├── App.tsx ├── __tests__ │ ├── App.test.tsx │ └── styleMock.js ├── index.css ├── index.html └── index.tsx ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/backend_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/.github/workflows/backend_test.yml -------------------------------------------------------------------------------- /.github/workflows/frontend_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/.github/workflows/frontend_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.1 2 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/Gemfile -------------------------------------------------------------------------------- /backend/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/Gemfile.lock -------------------------------------------------------------------------------- /backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/LICENSE -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/Rakefile -------------------------------------------------------------------------------- /backend/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/assets/config/manifest.js -------------------------------------------------------------------------------- /backend/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /backend/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /backend/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /backend/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /backend/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /backend/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /backend/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/controllers/greetings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/controllers/greetings_controller.rb -------------------------------------------------------------------------------- /backend/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /backend/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /backend/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /backend/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/models/application_record.rb -------------------------------------------------------------------------------- /backend/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /backend/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /backend/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /backend/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/bin/bundle -------------------------------------------------------------------------------- /backend/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/bin/rails -------------------------------------------------------------------------------- /backend/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/bin/rake -------------------------------------------------------------------------------- /backend/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/bin/setup -------------------------------------------------------------------------------- /backend/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/bin/spring -------------------------------------------------------------------------------- /backend/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/bin/update -------------------------------------------------------------------------------- /backend/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/bin/yarn -------------------------------------------------------------------------------- /backend/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config.ru -------------------------------------------------------------------------------- /backend/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/application.rb -------------------------------------------------------------------------------- /backend/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/boot.rb -------------------------------------------------------------------------------- /backend/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/cable.yml -------------------------------------------------------------------------------- /backend/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/credentials.yml.enc -------------------------------------------------------------------------------- /backend/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/database.yml -------------------------------------------------------------------------------- /backend/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/environment.rb -------------------------------------------------------------------------------- /backend/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/environments/development.rb -------------------------------------------------------------------------------- /backend/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/environments/production.rb -------------------------------------------------------------------------------- /backend/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/environments/test.rb -------------------------------------------------------------------------------- /backend/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /backend/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/assets.rb -------------------------------------------------------------------------------- /backend/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /backend/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /backend/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /backend/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /backend/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/inflections.rb -------------------------------------------------------------------------------- /backend/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /backend/config/initializers/new_framework_defaults_6_0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/new_framework_defaults_6_0.rb -------------------------------------------------------------------------------- /backend/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /backend/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/locales/en.yml -------------------------------------------------------------------------------- /backend/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/puma.rb -------------------------------------------------------------------------------- /backend/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/routes.rb -------------------------------------------------------------------------------- /backend/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/spring.rb -------------------------------------------------------------------------------- /backend/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/config/storage.yml -------------------------------------------------------------------------------- /backend/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/db/schema.rb -------------------------------------------------------------------------------- /backend/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/db/seeds.rb -------------------------------------------------------------------------------- /backend/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/prehook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/prehook -------------------------------------------------------------------------------- /backend/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/public/404.html -------------------------------------------------------------------------------- /backend/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/public/422.html -------------------------------------------------------------------------------- /backend/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/public/500.html -------------------------------------------------------------------------------- /backend/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/public/robots.txt -------------------------------------------------------------------------------- /backend/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/test/application_system_test_case.rb -------------------------------------------------------------------------------- /backend/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/test/routing/routing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/test/routing/routing_test.rb -------------------------------------------------------------------------------- /backend/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/backend/test/test_helper.rb -------------------------------------------------------------------------------- /backend/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/jest.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/src/__tests__/App.test.tsx -------------------------------------------------------------------------------- /frontend/src/__tests__/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/src/index.html -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/webpack.config.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohbarye/rails-react-typescript-docker-example/HEAD/frontend/yarn.lock --------------------------------------------------------------------------------