├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── package.json ├── src ├── assets │ └── tlmLogo.jpg ├── constant │ └── index.js ├── controller │ ├── games │ │ └── index.js │ ├── index.js │ └── tech │ │ └── index.js ├── index.js ├── router │ └── index.js ├── service │ └── index.js └── utils │ └── index.js ├── vercel.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vercel 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | README.md 2 | node_modules -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/tlmLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/assets/tlmLogo.jpg -------------------------------------------------------------------------------- /src/constant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/constant/index.js -------------------------------------------------------------------------------- /src/controller/games/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/controller/games/index.js -------------------------------------------------------------------------------- /src/controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/controller/index.js -------------------------------------------------------------------------------- /src/controller/tech/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/controller/tech/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/index.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/service/index.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaDeastra/The-Lazy-Media-api/HEAD/yarn.lock --------------------------------------------------------------------------------