generated from NHSDigital/nhs-notify-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.12 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.12 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
{
"name": "nhs-notify-web-template-management-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir .",
"lint:fix": "next lint --dir . --fix",
"test:unit": "jest",
"app:start": "pm2 start npm -- start",
"app:wait": "wait-on -l http://localhost:3000/templates/create-and-submit-templates",
"app:stop": "pm2 kill",
"typecheck": "npm run mock-amplify-outputs && tsc --noEmit",
"create-sandbox": "pm2 start npx -- ampx sandbox",
"destroy-sandbox": "npx ampx sandbox delete --y",
"mock-amplify-outputs": "if [ ! -f ./amplify_outputs.json ]; then echo \"{}\" > ./amplify_outputs.json ; fi"
},
"dependencies": {
"@aws-amplify/adapter-nextjs": "^1.2.23",
"@aws-amplify/backend": "^1.2.0",
"@aws-amplify/ui-react": "^6.3.1",
"@aws-sdk/client-ses": "^3.637.0",
"aws-amplify": "^6.6.0",
"date-fns": "^4.1.0",
"markdown-it": "^13.0.1",
"mimetext": "^3.0.24",
"next": "15.1.4",
"nhs-notify-web-template-management-amplify": "*",
"nhs-notify-web-template-management-utils": "*",
"nhsuk-frontend": "^8.3.0",
"nhsuk-react-components": "^4.1.1",
"path": "^0.12.7",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.8"
},
"devDependencies": {
"@aws-amplify/backend-cli": "^1.2.5",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/markdown-it": "^13.0.1",
"@types/node": "^22.8.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"constructs": "^10.3.0",
"jest-mock-extended": "^3.0.7",
"mochawesome": "^7.1.3",
"pa11y": "^8.0.0",
"pa11y-ci": "^3.1.0",
"pa11y-ci-reporter-html": "^7.0.0",
"pm2": "^5.4.2",
"prettier": "^3.3.3",
"sass": "^1.80.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"wait-on": "^8.0.0",
"whatwg-fetch": "^3.6.20"
},
"overrides": {
"pa11y-ci": {
"pa11y": "^8.0.0"
}
}
}