-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.53 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.53 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
{
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.9.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.4",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-unicorn": "^55.0.0",
"jest-html-reporter": "^3.10.2",
"jest-mock-extended": "^3.0.7",
"prettier": "^3.5.3",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"name": "nhs-notify-observability",
"overrides": {
"minimatch": "^10.2.4",
"fast-xml-parser": "^5.5.6",
"flatted": "^3.4.0"
},
"private": true,
"scripts": {
"build": "npm run --workspace frontend build --if-present",
"lint": "npm run --workspaces lint --if-present",
"lint:fix": "npm run --workspaces lint:fix --if-present",
"test:coverage": "npm run --workspaces test:coverage --if-present",
"test:unit": "npm run --workspaces test:unit --if-present",
"typecheck": "npm run --workspaces typecheck --if-present"
},
"workspaces": [
"lambdas/alert-forwarding",
"lambdas/metric-lambda-processor",
"utils/logger"
]
}