-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.16 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.16 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
{
"name": "nhsNotifyLambda",
"version": "1.0.0",
"description": "A lambda that processes notification requests off SQS",
"main": "nhsNotifyLambda.js",
"author": "NHS Digital",
"license": "MIT",
"type": "module",
"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",
"test": "npm run compile && npm run unit",
"check-licenses": "license-checker --failOn GPL --failOn LGPL --start ../..",
"cli:test-token": "npm run compile && node lib/cli/test-token-exchange.js"
},
"dependencies": {
"@aws-lambda-powertools/commons": "^2.30.1",
"@aws-lambda-powertools/logger": "^2.30.0",
"@aws-lambda-powertools/parameters": "^2.30.0",
"@aws-sdk/client-ssm": "^3.958.0",
"@middy/core": "^6.4.5",
"@middy/input-output-logger": "^6.4.5",
"@nhs/fhir-middy-error-handler": "^2.1.66",
"axios": "^1.13.2",
"axios-retry": "^4.5.0",
"jose": "^6.1.3",
"nock": "^14.0.10"
},
"devDependencies": {
"@psu-common/testing": "^1.0.0",
"axios-mock-adapter": "^2.1.0"
}
}