-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.13 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.13 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
{
"name": "tracker-user-info-lambda",
"version": "1.0.0",
"description": "Lambda to handle fetching information about the Clinical Prescription Tracker user",
"main": "handler.ts",
"author": "NHS Digital",
"license": "MIT",
"scripts": {
"unit": "POWERTOOLS_DEV=true NODE_OPTIONS=--experimental-vm-modules jest --no-cache --coverage",
"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.25.2",
"@aws-sdk/client-dynamodb": "^3.896.0",
"@aws-sdk/lib-dynamodb": "^3.893.0",
"@cpt-ui-common/authFunctions": "^1.0.0",
"@cpt-ui-common/dynamoFunctions": "^1.0.0",
"@cpt-ui-common/middyErrorHandler": "^1.0.0",
"@middy/core": "^6.4.5",
"@middy/http-header-normalizer": "^6.4.5",
"@middy/input-output-logger": "^6.4.5",
"aws-lambda": "^1.0.7",
"axios": "^1.12.2",
"jwks-rsa": "^3.2.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.152"
}
}