This repository was archived by the owner on Dec 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 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
48
49
50
51
52
53
54
55
{
"name": "try-to-validators",
"version": "0.1.0",
"author": {
"name": "roottool"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "run-s -c lint:*",
"lint:prettier": "prettier --ignore-path=.prettierignore --check .",
"lint:eslint": "eslint . --color --ext .js,.ts,.tsx",
"fix": "run-s -c fix:*",
"fix:prettier": "prettier --cache --ignore-path=.prettierignore --write .",
"fix:eslint": "eslint . --fix --color --cache --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "5.2.2",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-slot": "1.2.4",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-toast": "1.2.15",
"@valibot/i18n": "^1.0.0",
"arktype": "2.1.28",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "0.561.0",
"next": "16.0.10",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "7.68.0",
"tailwind-merge": "3.4.0",
"tailwindcss-animate": "1.0.7",
"valibot": "1.2.0",
"zod": "4.1.13"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "25.0.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"eslint": "9.39.1",
"eslint-config-next": "16.0.10",
"npm-run-all2": "8.0.4",
"postcss": "8.5.6",
"prettier": "3.7.4",
"tailwindcss": "4.1.18",
"typescript": "5.9.3"
}
}