-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.95 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.95 KB
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
58
{
"name": "powertools-sample-app",
"version": "2.29.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 .",
"lint:ci": "biome ci .",
"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.159",
"@types/node": "24.10.2",
"aws-cdk-lib": "^2.228.0",
"constructs": "^10.4.3",
"source-map-support": "^0.5.21",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
},
"dependencies": {
"@aws-lambda-powertools/batch": "^2.29.0",
"@aws-lambda-powertools/idempotency": "^2.29.0",
"@aws-lambda-powertools/logger": "^2.29.0",
"@aws-lambda-powertools/metrics": "^2.29.0",
"@aws-lambda-powertools/parameters": "^2.29.0",
"@aws-lambda-powertools/tracer": "^2.29.0",
"@aws-sdk/client-ssm": "^3.939.0",
"@aws-sdk/lib-dynamodb": "^3.939.0",
"@middy/core": "^4.7.0",
"@types/aws-lambda": "^8.10.159",
"@types/node": "24.10.2",
"aws-cdk": "^2.1033.0",
"constructs": "^10.4.3",
"esbuild": "^0.27.1",
"typescript": "^5.9.3"
}
}