├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── config.ts ├── e2e.test.ts ├── index.test.ts ├── index.ts ├── seeder.ts └── serverlessMock.test.ts ├── test-resources ├── buildings.rawsources.json └── persons.sources.json ├── tsconfig.build.json └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/package.json -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/src/e2e.test.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/src/seeder.ts -------------------------------------------------------------------------------- /src/serverlessMock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/src/serverlessMock.test.ts -------------------------------------------------------------------------------- /test-resources/buildings.rawsources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/test-resources/buildings.rawsources.json -------------------------------------------------------------------------------- /test-resources/persons.sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/test-resources/persons.sources.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raisenational/serverless-dynamodb/HEAD/tsconfig.json --------------------------------------------------------------------------------