├── .gitignore ├── .prettierrc ├── package.json ├── src ├── auth.ts ├── pg.ts └── server.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkintuckerllc/authorization/HEAD/.prettierrc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkintuckerllc/authorization/HEAD/package.json -------------------------------------------------------------------------------- /src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkintuckerllc/authorization/HEAD/src/auth.ts -------------------------------------------------------------------------------- /src/pg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkintuckerllc/authorization/HEAD/src/pg.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkintuckerllc/authorization/HEAD/src/server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkintuckerllc/authorization/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larkintuckerllc/authorization/HEAD/tslint.json --------------------------------------------------------------------------------