generated from NHSDigital/nhs-notify-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.01 KB
/
package.json
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
{
"name": "nhs-notify-iam-webauth",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"test:accessibility": "pa11y-ci -c ./tests/accessibility/.pa11y-ci.js",
"app:start": "pm2 start npm -- start",
"app:wait": "wait-on -l http://localhost:3000/auth",
"app:stop": "pm2 kill"
},
"dependencies": {
"next": "14.2.15",
"nhsuk-frontend": "^8.3.0",
"nhsuk-react-components": "^4.1.3",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@playwright/test": "^1.46.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^1.0.4",
"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",
"mochawesome": "^7.1.3",
"pa11y": "^8.0.0",
"pa11y-ci": "^3.1.0",
"pa11y-ci-reporter-html": "^6.0.2",
"pm2": "^5.4.2",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5",
"wait-on": "^7.2.0"
},
"overrides": {
"pa11y-ci": {
"pa11y": "^8.0.0"
}
}
}