-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
57 lines (57 loc) · 1.92 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
54
55
56
57
{
"name": "powertools-sample-app",
"version": "2.18.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",
"scripts": {
"build": "echo 'Not applicable, run `npx cdk synth` instead to build the stack'",
"test": "npm run test:unit",
"lint": "biome lint .",
"lint:fix": "biome check --write .",
"test:unit": "export POWERTOOLS_DEV=true && vitest --run --silent",
"test:e2e": "echo 'To be implemented ...'",
"cdk": "cdk"
},
"type": "module",
"imports": {
"#types": "./functions/commons/types.js",
"#constants": "./functions/commons/constants.js",
"#powertools": "./functions/commons/powertools/index.js",
"#powertools/*": "./functions/commons/powertools/*.js",
"#clients/*": "./functions/commons/clients/*.js",
"#helpers/*": "./functions/commons/helpers/*.js",
"#errors": "./functions/commons/errors.js"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.149",
"@types/node": "22.14.1",
"aws-cdk-lib": "^2.189.1",
"constructs": "^10.4.2",
"source-map-support": "^0.5.21",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.0.5"
},
"dependencies": {
"@aws-lambda-powertools/batch": "^2.18.0",
"@aws-lambda-powertools/idempotency": "^2.18.0",
"@aws-lambda-powertools/logger": "^2.18.0",
"@aws-lambda-powertools/metrics": "^2.18.0",
"@aws-lambda-powertools/parameters": "^2.18.0",
"@aws-lambda-powertools/tracer": "^2.18.0",
"@aws-sdk/client-ssm": "^3.787.0",
"@aws-sdk/lib-dynamodb": "^3.789.0",
"@middy/core": "^4.7.0",
"@types/aws-lambda": "^8.10.149",
"@types/node": "22.14.1",
"aws-cdk": "^2.1007.0",
"constructs": "^10.4.2",
"esbuild": "^0.25.2",
"typescript": "^5.8.3"
}
}