-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.22 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.22 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
{
"name": "cognitoLambdas",
"version": "1.0.0",
"description": "Lambda for cognito",
"main": "statusLambda.js",
"author": "NHS Digital",
"license": "MIT",
"scripts": {
"unit": "POWERTOOLS_DEV=true vitest run",
"lint": "eslint --max-warnings 0 --fix --config ../../eslint.config.mjs .",
"compile": "tsc --build",
"test": "npm run compile && npm run unit",
"check-licenses": "license-checker --failOn GPL --failOn LGPL --start ../.."
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.32.0",
"@aws-lambda-powertools/parameters": "^2.32.0",
"@aws-sdk/client-dynamodb": "^3.1016.0",
"@aws-sdk/client-secrets-manager": "^3.1016.0",
"@aws-sdk/lib-dynamodb": "^3.1016.0",
"@cpt-ui-common/authFunctions": "^1.0.0",
"@cpt-ui-common/dynamoFunctions": "^1.0.0",
"@cpt-ui-common/lambdaUtils": "^1.0.0",
"@cpt-ui-common/middyErrorHandler": "^1.0.0",
"@middy/core": "^7.2.1",
"@middy/input-output-logger": "^7.2.1",
"aws-lambda": "^1.0.7",
"axios": "^1.13.6",
"jsonwebtoken": "^9.0.3",
"jwks-rsa": "^4.0.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.161",
"mock-jwks": "^3.3.5",
"vitest": "^4.0.18",
"nock": "^14.0.11"
}
}