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
69 lines (69 loc) · 2.24 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.24 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
{
"dependencies": {
"@aws-amplify/adapter-nextjs": "^1.5.6",
"@aws-amplify/ui-react": "^6.9.4",
"aws-amplify": "^6.13.6",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"markdown-it": "^13.0.2",
"markdown-to-jsx": "^7.7.10",
"next": "^15.5.6",
"next-client-cookies": "^2.0.1",
"nhs-notify-backend-client": "^0.0.1",
"nhs-notify-web-template-management-utils": "^0.0.1",
"nhsuk-frontend": "^10.0.0",
"nhsuk-react-components": "^5.0.0",
"path": "^0.12.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-idle-timer": "^5.7.2",
"zod": "^4.0.17"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.9",
"@types/markdown-it": "^13.0.9",
"@types/node": "^22.13.12",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"constructs": "^10.4.2",
"eslint-config-next": "^15.4.6",
"jest-mock-extended": "^3.0.7",
"js-cookie": "^3.0.5",
"mochawesome": "^7.1.3",
"pm2": "^5.4.3",
"prettier": "^3.5.3",
"sass": "^1.86.0",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"wait-on": "^8.0.3",
"whatwg-fetch": "^3.6.20"
},
"name": "nhs-notify-web-template-management-frontend",
"private": true,
"scripts": {
"app:start": "pm2 start npm -- start",
"app:stop": "pm2 kill",
"app:wait": "wait-on -l http://localhost:3000/templates/create-and-submit-templates",
"build": "next build",
"create-sandbox": "pm2 start npx -- ampx sandbox",
"destroy-sandbox": "npx ampx sandbox delete --y",
"dev": "next dev",
"lint": "npm run mock-amplify-outputs && next lint --dir .",
"lint:fix": "npm run lint -- --fix",
"mock-amplify-outputs": "if [ ! -f ./amplify_outputs.json ]; then echo \"{}\" > ./amplify_outputs.json ; fi",
"start": "next start",
"test:unit": "npm run mock-amplify-outputs && jest",
"typecheck": "npm run mock-amplify-outputs && tsc --noEmit"
},
"version": "0.1.0"
}