├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── jest.config.js ├── lib ├── api-problem.ts ├── express-middleware.ts ├── index.ts └── mongoose-plugin.ts ├── license ├── package.json ├── readme.md ├── tests ├── api-problem.test.ts ├── middleware.test.ts └── mongoose.test.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | dist 4 | coverage 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | *.d.ts 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/.travis.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/api-problem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/lib/api-problem.ts -------------------------------------------------------------------------------- /lib/express-middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/lib/express-middleware.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/mongoose-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/lib/mongoose-plugin.ts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/readme.md -------------------------------------------------------------------------------- /tests/api-problem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/tests/api-problem.test.ts -------------------------------------------------------------------------------- /tests/middleware.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/tests/middleware.test.ts -------------------------------------------------------------------------------- /tests/mongoose.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/tests/mongoose.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative2113/express-api-project/HEAD/yarn.lock --------------------------------------------------------------------------------