-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "react-exercise",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"test": "npx playwright test",
"test:debug": "npx playwright test .src/tests --project='chromium' --workers 1 --headed --debug"
},
"dependencies": {
"@cruk/cruk-react-components": "^5.0.5",
"@emotion/is-prop-valid": "^1.3.0",
"@hookform/resolvers": "^3.3.4",
"@tanstack/react-query": "^4.3.9",
"next": "^14",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.1",
"styled-components": "^6.1.11",
"zod": "^3.22.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.6.0",
"@cruk/eslint-config": "^3",
"@playwright/test": "^1.39.0",
"@types/node": "^20",
"@types/react": "18.3.4",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6",
"prettier": "^3",
"typescript": "^5.0.2"
}
}