forked from react-hook-form/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.43 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",
"engines": {
"node": "12.x"
},
"dependencies": {
"@hookform/devtools": "2.0.0-beta.1",
"gatsby": "^2.30.2",
"gatsby-image": "2.4.16",
"gatsby-plugin-algolia-docsearch": "^1.0.5",
"gatsby-plugin-google-analytics": "2.3.13",
"gatsby-plugin-gtag": "1.0.13",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "2.4.25",
"gatsby-plugin-nprogress": "^2.3.10",
"gatsby-plugin-react-helmet": "3.3.10",
"gatsby-plugin-sharp": "2.6.29",
"gatsby-plugin-sitemap": "2.4.12",
"gatsby-plugin-typescript": "2.4.18",
"gatsby-source-filesystem": "2.3.26",
"gatsby-transformer-sharp": "2.5.13",
"gatsby-transformer-typescript-css-modules": "^1.0.14",
"little-state-machine": "3.0.1",
"prismjs": "^1.21.0",
"ptz-i18n": "^1.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-github-btn": "1.2.0",
"react-helmet": "5.2.1",
"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": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"gatsby-plugin-offline": "^3.2.17",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.1.1",
"typescript": "^4.0.2"
},
"keywords": [
"react-hook-form",
"form-validation"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{ts,tsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"now-build": "npm run build",
"prettier": "prettier --write './src/**/*.ts' './src/**/*.tsx' --config ./.prettierrc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run format"
]
}
}