This repository has been archived by the owner on Jan 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "react-hook-form-website",
"description": "React hooks for form validation without the hassle.",
"version": "6.0.1",
"author": "beier luo",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.json --fix"
},
"dependencies": {
"@hookform/devtools": "2.0.0-beta.1",
"little-state-machine": "3.0.1",
"next": "^10.0.5",
"next-translate": "^1.0.1",
"prismjs": "^1.21.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-github-btn": "1.2.0",
"react-hook-form": "6.0.0-rc.1",
"react-simple-animate": "^3.3.9",
"react-simple-img": "2.3.7",
"react-sortablejs": "1.5.1",
"sortablejs": "1.10.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.0.1",
"@types/node": "^14.11.8",
"@types/prismjs": "^1.16.2",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"keywords": [
"react-hook-form",
"form-validation"
],
"repository": {
"type": "git",
"url": "https://github.com/react-hook-form/documentation-nextjs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint"
]
}
}