-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 960 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 960 Bytes
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
{
"name": "gsul",
"version": "1.0.0",
"description": "Get status update lambda",
"main": "getStatusUpdates.js",
"author": "NHS Digital",
"license": "MIT",
"type": "module",
"scripts": {
"unit": "POWERTOOLS_DEV=true vitest run --config vitest.config.ts --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.31.0",
"@aws-lambda-powertools/logger": "^2.32.0",
"@aws-sdk/client-dynamodb": "^3.1016.0",
"@aws-sdk/lib-dynamodb": "^3.1019.0",
"@aws-sdk/util-dynamodb": "^3.991.0",
"@middy/core": "^7.3.0",
"@middy/input-output-logger": "^7.2.1",
"@middy/validator": "6.4.1",
"@psu-common/middyErrorHandler": "^1.0.0",
"json-schema-to-ts": "^3.1.1"
}
}