-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 828 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 828 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
{
"dependencies": {
"@internal/datastore": "*",
"@internal/helpers": "*",
"esbuild": "^0.25.11",
"pino": "^9.7.0"
},
"devDependencies": {
"@aws-sdk/s3-request-presigner": "^3.901.0",
"@tsconfig/node22": "^22.0.2",
"@types/aws-lambda": "^8.10.148",
"@types/jest": "^29.5.14",
"jest": "^30.2.0",
"jest-mock-extended": "^3.0.7",
"typescript": "^5.9.3",
"zod": "^4.1.11"
},
"name": "nhs-notify-supplier-api-handler",
"private": true,
"scripts": {
"lambda-build": "rm -rf dist && npx 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"
}