-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 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
{
"name": "react-hook-form-website",
"description": "React hooks for form validation without the hassle.",
"version": "6.0.1",
"author": "beier luo",
"dependencies": {
"@hookform/devtools": "4.3.1",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "15.1.0",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"contentlayer": "^0.3.4",
"little-state-machine": "^4.8.0",
"next": "15.1.2",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"prism-react-renderer": "^2.0.5",
"prismjs": "^1.29.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-github-btn": "1.4.0",
"react-hook-form": "7.44.3",
"react-simple-animate": "^3.5.2",
"react-simple-img": "3.0.0",
"react-sortablejs": "1.5.1",
"rehype-mdx-code-props": "^1.0.0",
"remark-custom-heading-id": "^1.0.1",
"remark-emoji": "^3.1.2",
"remark-gfm": "^3.0.1",
"sortablejs": "1.15.0"
},
"devDependencies": {
"@next/bundle-analyzer": "15.1.0",
"@types/eslint-plugin-jsx-a11y": "6.10.0",
"@types/eslint__eslintrc": "2.1.2",
"@types/node": "20.17.10",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/react-helmet": "^6.1.6",
"cross-env": "^7.0.3",
"eslint": "9.17.0",
"eslint-config-next": "15.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.4.2",
"typescript": "^5.6.3",
"typescript-eslint": "8.18.1"
},
"keywords": [
"react-hook-form",
"form-validation"
],
"license": "MIT",
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"build": "next build",
"dev": "next dev",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:ci": "next build --no-lint && next lint",
"now-build": "pnpm run build",
"start": "next start",
"typecheck": "tsc --noEmit",
"typecheck:ci": "next build --no-lint && tsc --noEmit",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,mdx,css,json}": [
"pnpm run format:fix"
]
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"pnpm": {
"overrides": {
"@types/react": "18.3.17",
"@types/react-dom": "18.3.5"
}
}
}