-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.92 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.92 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
{
"devDependencies": {
"@stylistic/eslint-plugin": "^3.1.0",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@tsconfig/node22": "^22.0.2",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"esbuild": "^0.25.11",
"eslint": "^9.37.0",
"eslint-config-airbnb-extended": "^2.3.2",
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-html": "^8.1.3",
"eslint-plugin-import-x": "^4.13.3",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^61.0.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-html-reporter": "^4.3.0",
"jest-mock-extended": "^4.0.0",
"lcov-result-merger": "^5.0.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"turbo": "^2.9.6",
"typescript-eslint": "^8.46.1"
},
"name": "nhs-notify-digital-letters",
"overrides": {
"brace-expansion": "^5.0.2",
"fast-xml-parser": "^5.3.7",
"minimatch": "^10.2.4",
"pretty-format": {
"react-is": "^19.0.0"
},
"react": "^19.0.0",
"test-exclude": "^8.0.0"
},
"packageManager": "npm@11.6.1",
"scripts": {
"build-schemas": "make -C src/cloudevents/domains/digital-letters build-no-bundle publish-bundled-json",
"clean": "npm run clean --workspaces --if-present",
"generate-dependencies": "npm run build-schemas && turbo run generate-dependencies && npm run generate-python-dependencies",
"generate-python-dependencies": "make -C src/python-schema-generator generate",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test:unit": "turbo run test:unit",
"typecheck": "turbo run typecheck"
},
"version": "0.0.1",
"workspaces": [
"lambdas/file-scanner-lambda",
"lambdas/key-generation",
"lambdas/refresh-apim-access-token",
"lambdas/pdm-mock-lambda",
"lambdas/pdm-poll-lambda",
"lambdas/ttl-create-lambda",
"lambdas/ttl-handle-expiry-lambda",
"lambdas/ttl-poll-lambda",
"lambdas/pdm-uploader-lambda",
"lambdas/print-sender-lambda",
"lambdas/core-notifier-lambda",
"lambdas/print-status-handler",
"lambdas/print-analyser",
"lambdas/report-scheduler",
"lambdas/report-event-transformer",
"lambdas/move-scanned-files-lambda",
"lambdas/report-generator",
"utils/utils",
"utils/sender-management",
"src/cloudevents",
"src/digital-letters-events",
"src/python-schema-generator",
"src/typescript-schema-generator",
"tests/playwright"
]
}