forked from NHSDigital/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.93 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.93 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
{
"//": "PLEASE UPDATE THE NAME AND WORKSPACES APPROPRIATELY.",
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"esbuild": "^0.25.0",
"eslint": "^9.27.0",
"eslint-config-airbnb-extended": "^1.0.11",
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-html": "^8.1.3",
"eslint-plugin-import-x": "^4.13.3",
"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.2",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-unicorn": "^59.0.1",
"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.3.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.3"
},
"name": "nhs-notify-repository-template",
"overrides": {
"minimatch": "^5.1.7",
"pretty-format": {
"react-is": "19.0.0"
},
"react": "^19.0.0"
},
"scripts": {
"build:archive": "npm run build:archive --workspaces --if-present",
"build:container": "npm run build:container --workspaces --if-present",
"generate-dependencies": "npm run generate-dependencies --workspaces --if-present",
"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": [
"containers/example-app",
"lambdas/example-lambda"
]
}