├── .github └── workflows │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── index.test.js ├── jest.config.js └── package.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | strict-peer-dependencies=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/index.test.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/next-test-api-routes/HEAD/package.json --------------------------------------------------------------------------------