-
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.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"dependencies": {
"@aws-sdk/client-s3": "catalog:aws",
"@aws-sdk/client-ssm": "catalog:aws",
"@nhs-notify-client-callbacks/logger": "workspace:*",
"@nhs-notify-client-callbacks/models": "workspace:*",
"aws-embedded-metrics": "catalog:app",
"cloudevents": "catalog:app",
"esbuild": "catalog:tools",
"p-map": "catalog:app",
"zod": "catalog:app"
},
"devDependencies": {
"@tsconfig/node22": "catalog:tools",
"@types/aws-lambda": "catalog:tools",
"@types/jest": "catalog:test",
"eslint": "catalog:lint",
"jest": "catalog:test",
"jest-mock-extended": "catalog:test",
"typescript": "catalog:tools"
},
"engines": {
"node": ">=24.14.1"
},
"name": "nhs-notify-client-transform-filter-lambda",
"private": true,
"scripts": {
"lambda-build": "rm -rf dist && pnpm exec esbuild --bundle --minify --sourcemap --target=es2020 --platform=node --loader:.node=file --entry-names=[name] --outdir=dist src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:unit": "jest",
"typecheck": "tsc --noEmit"
},
"version": "0.0.1"
}