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.25 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.25 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": "npm run mock-amplify-outputs && next lint --dir .",
"lint:fix": "npm run lint -- --fix",
"test:unit": "npm run mock-amplify-outputs && 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.4.3",
"@aws-amplify/ui-react": "^6.9.1",
"clsx": "^2.1.1",
"aws-amplify": "^6.12.3",
"date-fns": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"markdown-it": "^13.0.1",
"mimetext": "^3.0.24",
"next": "^15.2.1",
"next-client-cookies": "^2.0.1",
"nhs-notify-backend-client": "*",
"nhs-notify-web-template-management-utils": "*",
"nhsuk-frontend": "^9.1.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": "^3.23.8"
},
"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.8",
"@types/markdown-it": "^13.0.1",
"@types/node": "^22.8.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"constructs": "^10.3.0",
"eslint-config-next": "^15.1.7",
"jest-mock-extended": "^3.0.7",
"js-cookie": "^3.0.5",
"mochawesome": "^7.1.3",
"pa11y-ci": "^3.1.0",
"pa11y-ci-reporter-html": "^7.0.0",
"pm2": "^5.4.2",
"prettier": "^3.3.3",
"sass": "^1.84.0",
"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"
}
}