-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.85 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.85 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
{
"devDependencies": {
"@aws-sdk/client-ssm": "3.995.0",
"@eslint/eslintrc": "^3",
"@stylistic/eslint-plugin": "^3.1.0",
"@tsconfig/node22": "^22.0.5",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"eslint": "^9.39.2",
"eslint-config-airbnb-extended": "^1.0.11",
"eslint-config-next": "^15.5.11",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-html": "^8.1.3",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jest": "^28.11.0",
"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.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.6",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^59.0.1",
"lcov-result-merger": "^5.0.1",
"pa11y": "^8.0.0",
"pa11y-ci": "^4.0.1",
"pa11y-ci-reporter-html": "^8.0.0",
"prettier": "^3.5.3",
"totp-generator": "^1.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.32.1"
},
"name": "nhs-notify-iam-webauth",
"overrides": {
"fast-xml-parser": "^5.3.6",
"immutable": "^4.3.8",
"minimatch@10": "^10.2.1",
"minimatch@3": "^3.1.4",
"minimatch@9": "^9.0.7",
"nhsuk-react-components": {
"nhsuk-frontend": "^10.3.1"
},
"pa11y-ci": {
"pa11y": "^8.0.0"
},
"underscore@1": "^1.13.8"
},
"private": true,
"scripts": {
"build": "npm run --workspace frontend build --if-present",
"build-lambda": "npm run --workspaces build-lambda --if-present",
"cis2-totp": "tsx scripts/totp.ts",
"create-backend-sandbox": "./scripts/create_backend_sandbox.sh",
"destroy-backend-sandbox": "./scripts/destroy_backend_sandbox.sh",
"dev": "npm run --workspace frontend dev --if-present",
"generate-outputs": "tsx scripts/generate-outputs.ts",
"lint": "NODE_OPTIONS='--disable-warning=ExperimentalWarning' npm run --workspaces lint --if-present",
"lint:fix": "NODE_OPTIONS='--disable-warning=ExperimentalWarning' npm run --workspaces lint:fix --if-present",
"start": "npm run --workspace frontend start --if-present",
"test:accessibility": "pa11y-ci -c ./tests/accessibility/.pa11y-ci.js",
"test:coverage": "npm run --workspaces test:coverage --if-present",
"test:ui": "npm run build && npm -w tests/test-team run test:local-ui",
"test:unit": "npm run --workspaces test:unit --if-present",
"typecheck": "npm run --workspaces typecheck --if-present"
},
"workspaces": [
"frontend",
"lambdas/backup-cognito-id",
"lambdas/cis2-api",
"lambdas/cognito-triggers",
"lambdas/jwks-key-rotation",
"tests/test-team",
"utils/backend-config",
"utils/logger"
]
}