-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.84 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "temp-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "prisma generate && next dev",
"dev:test": "prisma generate && next dev --port=3001",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"test": "vitest",
"test:watch": "vitest --watch",
"e2e": "start-server-and-test dev:test http://localhost:3001 \"playwright test --ui\"",
"e2e:ci": "start-server-and-test dev:test http://localhost:3001 \"playwright test\""
},
"dependencies": {
"@hono/zod-validator": "^0.2.2",
"@hookform/resolvers": "^3.9.0",
"@lexical/react": "^0.17.1",
"@prisma/client": "^5.16.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@supabase/supabase-js": "^2.44.3",
"@tanstack/react-query": "^5.50.1",
"argon2": "0.31.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^3.6.0",
"es-hangul": "^2.1.0",
"hono": "^4.5.11",
"ky": "^1.7.2",
"lexical": "^0.17.1",
"lucide-react": "^0.404.0",
"next": "^14.2.12",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-google-recaptcha-v3": "^1.10.1",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-textarea-autosize": "^8.5.3",
"resend": "^4.0.0",
"tailwind-merge": "^2.4.0",
"tailwind-scrollbar-hide": "^1.1.7",
"ts-pattern": "^5.3.1",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.46.1",
"@svgr/webpack": "^8.1.0",
"@tanstack/eslint-plugin-query": "^5.53.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.1",
"axe-core": "^4.10.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"husky": "^9.1.5",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.7",
"postcss": "^8",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.16.1",
"start-server-and-test": "^2.0.5",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"vitest": "^2.0.5"
}
}