├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── codecov.yml ├── package.json ├── src ├── App.ts ├── __tests__ │ └── common.spec.ts ├── index.ts └── modules │ ├── common │ └── index.ts │ └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/codecov.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/package.json -------------------------------------------------------------------------------- /src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/src/App.ts -------------------------------------------------------------------------------- /src/__tests__/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/src/__tests__/common.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/src/modules/common/index.ts -------------------------------------------------------------------------------- /src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/src/modules/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vitormdias/Node-Starter/HEAD/tsconfig.json --------------------------------------------------------------------------------