-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
53
{
"name": "cdk-sample",
"version": "1.17.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"private": true,
"description": "This project contains source code and supporting files for a serverless application that you can deploy with CDK.",
"license": "MIT-0",
"bin": {
"cdk-app": "bin/cdk-app.js"
},
"scripts": {
"build": "echo 'Not applicable, run `npx cdk synth` instead to build the stack'",
"test": "npm run test:unit",
"lint": "eslint --ext .ts,.js --no-error-on-unmatched-pattern .",
"lint-fix": "eslint --fix --ext .ts,.js --fix --no-error-on-unmatched-pattern .",
"test:unit": "export POWERTOOLS_DEV=true && npm run build && jest --silent",
"test:e2e": "echo 'To be implemented ...'",
"cdk": "cdk"
},
"lint-staged": {
"*.ts": "npm run lint-fix",
"*.js": "npm run lint-fix"
},
"devDependencies": {
"@aws-lambda-powertools/commons": "^1.17.0",
"@aws-lambda-powertools/logger": "^1.17.0",
"@aws-lambda-powertools/metrics": "^1.17.0",
"@aws-lambda-powertools/parameters": "^1.17.0",
"@aws-lambda-powertools/tracer": "^1.17.0",
"@aws-sdk/client-ssm": "^3.490.0",
"@aws-sdk/lib-dynamodb": "^3.490.0",
"@types/aws-lambda": "^8.10.131",
"@types/jest": "^29.5.11",
"@types/node": "20.11.2",
"aws-cdk": "^2.121.1",
"constructs": "^10.3.0",
"esbuild": "^0.19.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@middy/core": "^4.7.0",
"aws-cdk-lib": "^2.121.1",
"construct": "^1.0.0",
"phin": "^3.7.0",
"source-map-support": "^0.5.21"
}
}