-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.3 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.3 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
59
60
61
62
{
"name": "ipv-cri-check-hmrc-api",
"description": "",
"workspaces": [
"integration-tests",
"lambdas/*"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"unit": "export POWERTOOLS_DEV=true && jest --silent",
"test": "npm run unit --",
"test:coverage": "npm run unit -- --coverage",
"sam:validate": "cd infrastructure && sam validate && sam validate --lint",
"sam:build": "npm run sam:validate && sam build --template infrastructure/template.yaml --cached --parallel",
"deploy": "./deploy.sh"
},
"dependencies": {
"@aws-lambda-powertools/commons": "2.28.1",
"@aws-lambda-powertools/logger": "2.28.1",
"@aws-lambda-powertools/metrics": "2.28.1",
"@aws-lambda-powertools/parameters": "2.28.1",
"@aws-lambda-powertools/tracer": "2.28.1",
"@aws-sdk/client-cloudwatch-logs": "3.828.0",
"@aws-sdk/client-dynamodb": "3.828.0",
"@aws-sdk/client-sqs": "3.828.0",
"@aws-sdk/client-ssm": "3.828.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-otlp-grpc": "^0.26.0",
"@opentelemetry/instrumentation-aws-lambda": "^0.50.2",
"@opentelemetry/instrumentation-aws-sdk": "^0.49.0",
"@opentelemetry/instrumentation-dns": "^0.43.0",
"@opentelemetry/instrumentation-fs": "^0.19.0",
"@opentelemetry/instrumentation-http": "^0.57.1",
"@opentelemetry/instrumentation-net": "^0.43.0",
"@opentelemetry/instrumentation-undici": "^0.10.0",
"@opentelemetry/plugin-http": "^0.18.2",
"@opentelemetry/resource-detector-aws": "^1.11.0",
"@opentelemetry/sdk-node": "^0.57.1",
"@opentelemetry/sdk-trace-node": "^1.30.1",
"esbuild": "0.25.0",
"jose": "^5.2.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.126",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.7.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"//": "following issues with the version of @smithy/types required by aws-sdk-client-mock vs aws-sdk, we have had to pin it to the version used by the sdk modules.",
"overrides": {
"@smithy/types": "4.3.1"
}
}