-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.09 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
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": "nextjs-testing-strategy-2022",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"test:e2e": "playwright test",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"storybook": "start-storybook -p 6006"
},
"dependencies": {
"@hookform/resolvers": "^2.8.10",
"clsx": "^1.1.1",
"connect-redis": "^6.1.3",
"ioredis": "^5.0.6",
"next": "12.1.6",
"next-session": "^4.0.4",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "^7.31.3",
"zod": "^3.17.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@playwright/test": "^1.23.0",
"@storybook/addon-actions": "^6.5.5",
"@storybook/addon-essentials": "^6.5.5",
"@storybook/addon-interactions": "^6.5.5",
"@storybook/addon-links": "^6.5.5",
"@storybook/builder-webpack5": "^6.5.5",
"@storybook/manager-webpack5": "^6.5.5",
"@storybook/react": "^6.5.5",
"@storybook/testing-library": "^0.0.11",
"@storybook/testing-react": "^1.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/connect-redis": "^0.0.18",
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"axe-playwright": "^1.1.11",
"babel-loader": "^8.2.5",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-plugin-storybook": "^0.5.12",
"eslint-plugin-testing-library": "^5.5.1",
"ioredis-mock": "^8.2.2",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-html-reporters": "^3.0.9",
"msw": "^0.42.3",
"msw-storybook-addon": "^1.6.3",
"next-router-mock": "^0.6.9",
"node-mocks-http": "^1.11.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"storybook-addon-next-router": "^4.0.0",
"typescript": "4.7.2",
"whatwg-fetch": "^3.6.2"
},
"msw": {
"workerDirectory": "public"
}
}