-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
68 lines (68 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "powertools-sample-app",
"version": "2.1.1",
"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": "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 && jest --silent",
"test:e2e": "echo 'To be implemented ...'",
"cdk": "cdk"
},
"lint-staged": {
"*.ts": "npm run lint-fix",
"*.js": "npm run lint-fix"
},
"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.137",
"@types/jest": "^29.5.12",
"@types/node": "20.12.12",
"aws-cdk": "^2.142.1",
"aws-cdk-lib": "^2.142.1",
"constructs": "^10.3.0",
"jest": "^29.7.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"tsx": "^4.10.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@aws-lambda-powertools/batch": "^2.1.1",
"@aws-lambda-powertools/idempotency": "^2.1.1",
"@aws-lambda-powertools/logger": "^2.1.1",
"@aws-lambda-powertools/metrics": "^2.1.1",
"@aws-lambda-powertools/parameters": "^2.1.1",
"@aws-lambda-powertools/tracer": "^2.1.1",
"@aws-sdk/client-ssm": "^3.574.0",
"@aws-sdk/lib-dynamodb": "^3.574.0",
"@middy/core": "^4.7.0",
"@types/aws-lambda": "^8.10.137",
"@types/jest": "^29.5.12",
"@types/node": "20.12.12",
"aws-cdk": "^2.142.1",
"constructs": "^10.3.0",
"esbuild": "^0.21.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}