-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "cpsuLambda",
"version": "1.0.0",
"description": "Update Prescription Status for custom formats",
"main": "cpsu.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 ../.."
},
"dependencies": {
"@aws-lambda-powertools/commons": "^2.30.1",
"@aws-lambda-powertools/logger": "^2.30.1",
"@aws-sdk/client-dynamodb": "^3.958.0",
"@aws-sdk/util-dynamodb": "^3.958.0",
"@middy/core": "^7.0.2",
"@middy/http-header-normalizer": "^7.0.2",
"@middy/input-output-logger": "^7.0.2",
"@middy/validator": "6.4.1",
"json-schema-to-ts": "^3.1.1",
"pratica": "^2.3.0",
"ts-md5": "^2.0.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@types/fhir": "^0.0.41",
"aws-sdk-client-mock": "^4.1.0"
}
}