-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 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
{
"name": "run-types-run",
"version": "0.1.0",
"private": true,
"author": "Martin",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:schema": "vitest './src/schema/'",
"test:types": "tsc --noEmit",
"test:components:playwright": "playwright test -c './playwright-ct.config.ts'",
"test:components:playwright:ui": "playwright test -c './playwright-ct.config.ts' --ui",
"test:components:cypress": "cypress run --component",
"test:components:cypress:ui": "cypress open"
},
"dependencies": {
"@faker-js/faker": "^8.3.1",
"@hookform/devtools": "^4.3.1",
"@hookform/resolvers": "^3.3.4",
"@playwright/experimental-ct-react": "^1.40.1",
"@tanstack/react-query": "^5.17.9",
"@tanstack/react-query-devtools": "^5.17.9",
"@testing-library/cypress": "^10.0.1",
"@testing-library/react": "^14.1.2",
"@types/node": "^20.10.8",
"@types/react": "18.2.47",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"clsx": "^2.1.0",
"cypress": "^13.6.3",
"daisyui": "^4.5.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-zod": "^1.4.0",
"http-status-codes": "^2.3.0",
"jsdom": "^23.2.0",
"next": "^14.1.0",
"playwright": "^1.40.1",
"postcss": "^8.4.33",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.3",
"tailwindcss": "^3.4.1",
"turbo": "^1.11.3",
"typescript": "^5.3.3",
"vite": "5.0.11",
"vitest": "^1.2.0",
"zod": "^3.22.4",
"zod-validation-error": "^2.1.0"
}
}