-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "code-deploy-external-hook",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx run-many --target=build --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"deploy": "nx deploy infra",
"deploy:test": "nx test-deploy test-infra"
},
"private": true,
"dependencies": {
"@aws-cdk/aws-apigateway": "1.140.0",
"@aws-cdk/aws-codedeploy": "1.140.0",
"@aws-cdk/aws-dynamodb": "1.140.0",
"@aws-cdk/aws-iam": "1.140.0",
"@aws-cdk/aws-lambda": "1.140.0",
"@aws-cdk/aws-logs": "1.140.0",
"@aws-cdk/core": "1.140.0",
"@aws-sdk/client-codedeploy": "^3.48.0",
"@aws-sdk/client-dynamodb": "^3.48.0",
"@aws-sdk/util-dynamodb": "^3.49.0",
"pino": "^7.6.4",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"tslib": "^2.0.0",
"tsyringe": "^4.6.0"
},
"devDependencies": {
"@nrwl/cli": "13.4.6",
"@nrwl/eslint-plugin-nx": "13.4.6",
"@nrwl/jest": "13.4.6",
"@nrwl/linter": "13.4.6",
"@nrwl/node": "^13.4.6",
"@nrwl/tao": "13.4.6",
"@nrwl/workspace": "13.4.6",
"@types/aws-lambda": "^8.10.92",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "~5.3.0",
"@typescript-eslint/parser": "~5.3.0",
"aws-cdk": "^2.10.0",
"eslint": "8.2.0",
"eslint-config-prettier": "8.1.0",
"jest": "27.2.3",
"prettier": "^2.3.1",
"prettier-plugin-organize-imports": "^2.3.4",
"ts-jest": "27.0.5",
"ts-node": "^10.4.0",
"typescript": "~4.3.5"
}
}