-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "account-interventions-service",
"description": "Account Interventions Service",
"version": "0.0.1",
"private": true,
"license": "MIT",
"engines": {
"node": ">=24.14.0 <25"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "vitest --coverage",
"test:types": "tsc --noEmit",
"test:pact:provider": "vitest -c vitest.contract.config.ts src/contract-testing/provider/*",
"test:pact:consumer": "vitest -c vitest.contract.config.ts src/contract-testing/consumer/*",
"test:mutation": "stryker run",
"connect:pact:broker": "tsx src/contract-testing/test-helpers/connect-to-pact-broker.ts",
"pact:publish:contracts": "tsx src/contract-testing/test-helpers/publish-pacts.ts",
"lint": "npm run lint:code && npm run lint:spec && npm run lint:iac",
"lint:code": "eslint --ext .ts .",
"lint:code:fix": "npm run lint:code -- --fix",
"lint:iac": "for f in src/infra/**/template.yaml; do (sam validate --lint -t $f) || exit 1; done",
"lint:spec:oas": "spectral lint src/specs/api.yaml",
"lint:spec": "npm run lint:spec:oas",
"clean": "rimraf .aws-sam coverage",
"build": "sam build -t src/infra/main/template.yaml",
"package": "npm run clean && npm run build",
"precommit": "pre-commit run",
"send-audit-event": "tsx src/commands/send-audit-event.ts",
"generate:spec:main": "tsx src/scripts/generate-main-spec.ts"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.33.1",
"@aws-lambda-powertools/metrics": "^2.33.1",
"@aws-lambda-powertools/tracer": "^2.33.1",
"@aws-sdk/client-dynamodb": "^3.1057.0",
"@aws-sdk/client-sqs": "^3.1068.0",
"@aws-sdk/lib-dynamodb": "^3.1068.0",
"@aws-sdk/util-dynamodb": "^3.996.0",
"@babel/helpers": "^7.26.10",
"@govuk-one-login/event-catalogue-schemas": "^44.0.22",
"@smithy/node-http-handler": "^4.7.8",
"ajv": "^8.20.0",
"fast-xml-parser": "^5.9.0",
"tar": "^7.5.16",
"tsx": "^4.22.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"@aws-sdk/client-sso-oidc": "^3.1068.0",
"@aws-sdk/client-sts": "^3.1068.0",
"@eslint/js": "^10.0.1",
"@govuk-one-login/event-catalogue": "^44.0.22",
"@pact-foundation/pact": "^16.5.0",
"@pact-foundation/pact-cli": "^16.1.6",
"@stoplight/spectral-cli": "^6.16.0",
"@stryker-mutator/api": "^9.6.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/aws-lambda": "^8.10.162",
"@types/express": "^5.0.6",
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.61.0",
"@vitest/coverage-v8": "^4.1.9",
"aws-crt": "^1.32.1",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-vitest": "^7.1.0",
"esbuild": "^0.28.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-tsdoc": "^0.5.0",
"eslint-plugin-unicorn": "^66.0.0",
"express": "^5.2.1",
"jest-openapi": "^0.14.2",
"prettier": "^3.8.4",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.3"
},
"overrides": {
"@babel/core": "^7.29.6",
"@babel/helpers": "^7.26.10",
"axios": "^1.14.0",
"brace-expansion": "^5.0.6",
"cross-spawn": "^7.0.5",
"eslint-visitor-keys": "^4.2.0",
"form-data": "^4.0.6",
"lodash": "^4.18.1",
"minimatch@3.1.2": "^3.1.3",
"qs": "^6.14.2",
"rollup": "2.80.0",
"underscore": "^1.13.8",
"ws": "^8.21.0"
}
}