-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
78 lines (78 loc) · 2.36 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
{
"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": "^13.4.5",
"@types/node": "^20.3.1",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"contentlayer": "^0.3.3",
"date-fns": "^2.30.0",
"little-state-machine": "^4.8.0",
"next": "^14.1.1",
"next-contentlayer": "^0.3.3",
"next-themes": "^0.2.1",
"prism-react-renderer": "^2.0.5",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"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": "^13.4.5",
"@types/react": "^18.3.11",
"@types/react-helmet": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^13.4.5",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.4.2",
"typescript": "^5.6.3"
},
"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",
"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"
}