├── README.md ├── docker-compose.yml └── packages └── corrections ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package.json ├── src ├── app.controller.ts ├── app.module.ts └── main.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /packages/corrections/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/.eslintrc.js -------------------------------------------------------------------------------- /packages/corrections/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/.gitignore -------------------------------------------------------------------------------- /packages/corrections/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/.prettierrc -------------------------------------------------------------------------------- /packages/corrections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/README.md -------------------------------------------------------------------------------- /packages/corrections/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/nest-cli.json -------------------------------------------------------------------------------- /packages/corrections/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/package.json -------------------------------------------------------------------------------- /packages/corrections/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/src/app.controller.ts -------------------------------------------------------------------------------- /packages/corrections/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/src/app.module.ts -------------------------------------------------------------------------------- /packages/corrections/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/src/main.ts -------------------------------------------------------------------------------- /packages/corrections/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/tsconfig.build.json -------------------------------------------------------------------------------- /packages/corrections/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/tsconfig.json -------------------------------------------------------------------------------- /packages/corrections/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rocketseat/backend-challenge/HEAD/packages/corrections/yarn.lock --------------------------------------------------------------------------------