-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "ps-aws-demo",
"version": "0.1.0",
"bin": {
"ps-aws-demo": "bin/ps-aws-demo.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.109",
"@types/jest": "^29.2.6",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"aws-cdk": "2.61.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.4"
},
"dependencies": {
"@aws-cdk/aws-apigatewayv2-alpha": "^2.61.1-alpha.0",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "^2.61.1-alpha.0",
"@aws-sdk/client-firehose": "^3.256.0",
"@aws-sdk/client-s3": "^3.256.0",
"@aws-sdk/client-sqs": "^3.256.0",
"@faker-js/faker": "^7.6.0",
"aws-cdk-lib": "2.61.1",
"aws-lambda": "^1.0.7",
"constructs": "^10.1.228"
}
}