-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"dependencies": {
"@aws-amplify/adapter-nextjs": "^1.6.9",
"aws-amplify": "^6.15.6",
"next": "^16.1.5",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.8.1",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest-html-reporter": "^4.3.0",
"jest-mock-extended": "^4.0.0",
"pm2": "^6.0.13",
"sass": "^1.86.0",
"ts-jest": "^29.4.0"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals"
]
},
"name": "nhs-notify-client-config-frontend",
"private": true,
"scripts": {
"app:start": "pm2 start npm -- start",
"app:stop": "pm2 kill",
"app:wait": "wait-on -l http://localhost:3000/auth",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"start": "next start",
"test:coverage": "jest --coverage",
"test:unit": "jest",
"typecheck": "tsc --noEmit"
},
"version": "0.1.0"
}