Updates to secrets manager; added foundation for e2e testing; began initialization for pipeline builds

This commit is contained in:
2023-04-29 00:58:15 -04:00
parent 29d36a57d6
commit bdfab94810
22 changed files with 9839 additions and 414 deletions

View File

@@ -5,7 +5,9 @@
"license": "MIT",
"scripts": {
"start": "nest start",
"start:dev": "nest start --watch"
"start:dev": "nest start --watch",
"build": "nest build",
"test": "jest"
},
"dependencies": {
"@nestjs/common": "^9.3.10",
@@ -13,7 +15,6 @@
"@nestjs/core": "^9.3.10",
"@nestjs/platform-express": "^9.3.10",
"@nestjs/typeorm": "^9.0.1",
"@types/express": "^4.17.17",
"class-transformer": "^0.5.1",
"joi": "^17.9.0",
"js2xmlparser": "^5.0.0",
@@ -24,7 +25,34 @@
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@aws-sdk/client-sns": "^3.321.1",
"@nestjs/cli": "^9.3.0",
"eslint": "^8.36.0"
"@nestjs/testing": "^9.4.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/supertest": "^2.0.12",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0"
},
"jest": {
"globalSetup": "./_jest_/setup.ts",
"globalTeardown": "./_jest_/teardown.ts",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.*spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}