Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 20 additions & 18 deletions asker/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,27 @@
"version": "0.1.0",
"author": "Booster Cloud",
"dependencies": {
"@boostercloud/framework-core": "0.12.4",
"@boostercloud/framework-provider-aws": "0.12.4",
"@boostercloud/framework-types": "0.12.4",
"metadata-booster": "0.3.1",
"@boostercloud/framework-core": "0.13.0",
"@boostercloud/framework-provider-aws": "0.13.0",
"@boostercloud/framework-types": "0.13.0",
"tslib": "2.1.0"
},
"devDependencies": {
"@boostercloud/framework-provider-aws-infrastructure": "0.12.4",
"@types/node": "^13.5.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.9.3"
"@boostercloud/framework-provider-aws-infrastructure": "^0.13.0",
"rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"typescript": "^4.2.3",
"ts-node": "^9.1.1",
"ttypescript": "1.5.12",
"@types/node": "^14.14.36"
},
"engines": {
"node": ">=8.0.0"
Expand All @@ -34,10 +36,10 @@
"scripts": {
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"compile": "npx tsc -b tsconfig.json",
"compile": "npx ttypescript -b tsconfig.json",
"deploy": "boost deploy",
"clean": "npx rimraf ./dist tsconfig.tsbuildinfo",
"test": "npx nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
"test": "AWS_SDK_LOAD_CONFIG=true BOOSTER_ENV=test npx nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}
6 changes: 5 additions & 1 deletion asker/backend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
"plugins": [
{
"transform": "metadata-booster"
}
]
},
"include": [
"src/**/*"
Expand Down