├── .infragenie └── infrastructure_model.png ├── README.md ├── docker-compose.yml ├── nestjs-cars-app ├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── bin │ └── wait-for ├── nest-cli.json ├── ormconfig.json ├── package.json ├── src │ ├── app.controller.spec.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── components │ │ ├── cars │ │ │ ├── cars.module.ts │ │ │ ├── cars.resolver.ts │ │ │ ├── cars.service.ts │ │ │ ├── dto │ │ │ │ └── new-car.input.ts │ │ │ └── entities │ │ │ │ └── car.ts │ │ └── components.module.ts │ ├── database │ │ └── database.module.ts │ ├── main.ts │ └── migrations │ │ └── 1622304168366-CreateDatabase.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock ├── nginx └── nginx.conf └── react-cars-app ├── .env ├── .gitignore ├── Dockerfile ├── HomePage_Demo.png ├── README.md ├── __generated__ └── globalTypes.ts ├── craco.config.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── server.js ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── app │ ├── components │ │ ├── bookCard │ │ │ └── index.tsx │ │ ├── button │ │ │ └── index.tsx │ │ ├── car │ │ │ └── index.tsx │ │ ├── footer │ │ │ └── index.tsx │ │ ├── logo │ │ │ └── index.tsx │ │ ├── marginer │ │ │ └── index.tsx │ │ ├── navbar │ │ │ ├── index.tsx │ │ │ ├── menuStyles.ts │ │ │ └── navItems.tsx │ │ └── responsive │ │ │ └── index.ts │ ├── containers │ │ └── HomePage │ │ │ ├── aboutUs.tsx │ │ │ ├── bookingSteps.tsx │ │ │ ├── index.tsx │ │ │ ├── selectors.ts │ │ │ ├── slice.ts │ │ │ ├── topCars.tsx │ │ │ ├── topSection.tsx │ │ │ └── type.ts │ ├── graphql-schema.json │ ├── graphql.ts │ ├── hooks.ts │ ├── services │ │ └── carService │ │ │ ├── __generated__ │ │ │ └── GetCars.ts │ │ │ ├── index.ts │ │ │ └── queries.ts │ └── store.ts ├── assets │ └── images │ │ ├── blob.svg │ │ ├── car-logo-dark.png │ │ ├── car-logo.png │ │ ├── homepage_design.png │ │ ├── jeep.png │ │ ├── mclaren-orange-big.png │ │ ├── mclaren-orange.png │ │ └── porche.png ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── serviceWorker.ts ├── setupTests.ts └── typings │ ├── car.ts │ ├── index.ts │ ├── react-burger-menu.d.ts │ └── react-carousel.d.ts ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.infragenie/infrastructure_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/.infragenie/infrastructure_model.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nestjs-cars-app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/.env -------------------------------------------------------------------------------- /nestjs-cars-app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/.eslintrc.js -------------------------------------------------------------------------------- /nestjs-cars-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/.gitignore -------------------------------------------------------------------------------- /nestjs-cars-app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/.prettierrc -------------------------------------------------------------------------------- /nestjs-cars-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/Dockerfile -------------------------------------------------------------------------------- /nestjs-cars-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/README.md -------------------------------------------------------------------------------- /nestjs-cars-app/bin/wait-for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/bin/wait-for -------------------------------------------------------------------------------- /nestjs-cars-app/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/nest-cli.json -------------------------------------------------------------------------------- /nestjs-cars-app/ormconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/ormconfig.json -------------------------------------------------------------------------------- /nestjs-cars-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/package.json -------------------------------------------------------------------------------- /nestjs-cars-app/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/app.controller.spec.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/app.controller.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/app.module.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/app.service.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/components/cars/cars.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/components/cars/cars.module.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/components/cars/cars.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/components/cars/cars.resolver.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/components/cars/cars.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/components/cars/cars.service.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/components/cars/dto/new-car.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/components/cars/dto/new-car.input.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/components/cars/entities/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/components/cars/entities/car.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/components/components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/components/components.module.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/database/database.module.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/main.ts -------------------------------------------------------------------------------- /nestjs-cars-app/src/migrations/1622304168366-CreateDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/src/migrations/1622304168366-CreateDatabase.ts -------------------------------------------------------------------------------- /nestjs-cars-app/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /nestjs-cars-app/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/test/jest-e2e.json -------------------------------------------------------------------------------- /nestjs-cars-app/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/tsconfig.build.json -------------------------------------------------------------------------------- /nestjs-cars-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/tsconfig.json -------------------------------------------------------------------------------- /nestjs-cars-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nestjs-cars-app/yarn.lock -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /react-cars-app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/.env -------------------------------------------------------------------------------- /react-cars-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/.gitignore -------------------------------------------------------------------------------- /react-cars-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/Dockerfile -------------------------------------------------------------------------------- /react-cars-app/HomePage_Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/HomePage_Demo.png -------------------------------------------------------------------------------- /react-cars-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/README.md -------------------------------------------------------------------------------- /react-cars-app/__generated__/globalTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/__generated__/globalTypes.ts -------------------------------------------------------------------------------- /react-cars-app/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/craco.config.js -------------------------------------------------------------------------------- /react-cars-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/package.json -------------------------------------------------------------------------------- /react-cars-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/public/favicon.ico -------------------------------------------------------------------------------- /react-cars-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/public/index.html -------------------------------------------------------------------------------- /react-cars-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/public/logo192.png -------------------------------------------------------------------------------- /react-cars-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/public/logo512.png -------------------------------------------------------------------------------- /react-cars-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/public/manifest.json -------------------------------------------------------------------------------- /react-cars-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/public/robots.txt -------------------------------------------------------------------------------- /react-cars-app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/server.js -------------------------------------------------------------------------------- /react-cars-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/App.css -------------------------------------------------------------------------------- /react-cars-app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/App.test.tsx -------------------------------------------------------------------------------- /react-cars-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/App.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/bookCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/bookCard/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/button/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/car/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/car/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/footer/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/logo/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/marginer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/marginer/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/navbar/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/navbar/menuStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/navbar/menuStyles.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/components/navbar/navItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/navbar/navItems.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/components/responsive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/components/responsive/index.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/containers/HomePage/aboutUs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/containers/HomePage/aboutUs.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/containers/HomePage/bookingSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/containers/HomePage/bookingSteps.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/containers/HomePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/containers/HomePage/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/containers/HomePage/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/containers/HomePage/selectors.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/containers/HomePage/slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/containers/HomePage/slice.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/containers/HomePage/topCars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/containers/HomePage/topCars.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/containers/HomePage/topSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/containers/HomePage/topSection.tsx -------------------------------------------------------------------------------- /react-cars-app/src/app/containers/HomePage/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/containers/HomePage/type.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/graphql-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/graphql-schema.json -------------------------------------------------------------------------------- /react-cars-app/src/app/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/graphql.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/hooks.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/services/carService/__generated__/GetCars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/services/carService/__generated__/GetCars.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/services/carService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/services/carService/index.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/services/carService/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/services/carService/queries.ts -------------------------------------------------------------------------------- /react-cars-app/src/app/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/app/store.ts -------------------------------------------------------------------------------- /react-cars-app/src/assets/images/blob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/assets/images/blob.svg -------------------------------------------------------------------------------- /react-cars-app/src/assets/images/car-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/assets/images/car-logo-dark.png -------------------------------------------------------------------------------- /react-cars-app/src/assets/images/car-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/assets/images/car-logo.png -------------------------------------------------------------------------------- /react-cars-app/src/assets/images/homepage_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/assets/images/homepage_design.png -------------------------------------------------------------------------------- /react-cars-app/src/assets/images/jeep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/assets/images/jeep.png -------------------------------------------------------------------------------- /react-cars-app/src/assets/images/mclaren-orange-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/assets/images/mclaren-orange-big.png -------------------------------------------------------------------------------- /react-cars-app/src/assets/images/mclaren-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/assets/images/mclaren-orange.png -------------------------------------------------------------------------------- /react-cars-app/src/assets/images/porche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/assets/images/porche.png -------------------------------------------------------------------------------- /react-cars-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/index.css -------------------------------------------------------------------------------- /react-cars-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/index.tsx -------------------------------------------------------------------------------- /react-cars-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/logo.svg -------------------------------------------------------------------------------- /react-cars-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /react-cars-app/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/serviceWorker.ts -------------------------------------------------------------------------------- /react-cars-app/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/setupTests.ts -------------------------------------------------------------------------------- /react-cars-app/src/typings/car.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/typings/car.ts -------------------------------------------------------------------------------- /react-cars-app/src/typings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/src/typings/index.ts -------------------------------------------------------------------------------- /react-cars-app/src/typings/react-burger-menu.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react-burger-menu"; 2 | -------------------------------------------------------------------------------- /react-cars-app/src/typings/react-carousel.d.ts: -------------------------------------------------------------------------------- 1 | declare module "@brainhubeu/react-carousel"; 2 | -------------------------------------------------------------------------------- /react-cars-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/tailwind.config.js -------------------------------------------------------------------------------- /react-cars-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/tsconfig.json -------------------------------------------------------------------------------- /react-cars-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipenywis/react-nestjs-full-web-app/HEAD/react-cars-app/yarn.lock --------------------------------------------------------------------------------