-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.59 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.59 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
{
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.8",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"esbuild": "^0.25.9",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.9.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.4",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.7",
"eslint-plugin-unicorn": "^55.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"jest-mock-extended": "^3.0.7",
"lcov-result-merger": "^5.0.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.9.3"
},
"name": "nhs-notify-web-template-management",
"overrides": {
"@aws-sdk/xml-builder": {
"fast-xml-parser": "5.5.6"
},
"fast-xml-parser": "^5.5.6",
"flatted": "^3.4.0",
"immutable": "^5.1.5",
"nhsuk-react-components": {
"nhsuk-frontend": "^10.3.1"
},
"pretty-format": {
"react-is": "19.0.0"
},
"react": "^19.0.0",
"underscore": "^1.13.8"
},
"scripts": {
"build": "npm run create-env-file && npm run build --workspace frontend",
"create-amplify-outputs": "tsx ./scripts/create-amplify-outputs.ts",
"create-backend-sandbox": "./scripts/create_backend_sandbox.sh",
"create-env-file": "tsx ./scripts/create-env-file.ts",
"destroy-backend-sandbox": "./scripts/destroy_backend_sandbox.sh",
"dev": "npm run dev --workspace frontend --if-present",
"generate-dependencies": "npm run generate-dependencies --workspaces --if-present",
"generate-outputs": "npm run create-amplify-outputs file",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"start": "npm run start --workspace frontend",
"test:unit": "npm run test:unit --workspaces",
"typecheck": "npm run typecheck --workspaces"
},
"workspaces": [
"frontend",
"lambdas/authorizer",
"lambdas/backend-api",
"lambdas/backend-client",
"lambdas/cognito-triggers",
"lambdas/download-authorizer",
"lambdas/event-publisher",
"lambdas/letter-preview-renderer",
"lambdas/sftp-letters",
"packages/event-schemas",
"packages/types",
"tests/contracts/provider",
"tests/test-team",
"utils/backend-config",
"utils/entity-update-command-builder",
"utils/test-helper-utils",
"utils/utils"
]
}