forked from react-hook-form/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.46 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
{
"name": "react-hook-form-website",
"description": "React hooks for form validation without the hassle.",
"version": "6.0.1",
"author": "beier luo",
"dependencies": {
"@hookform/devtools": "2.0.0-beta.1",
"gatsby": "^3.3.0",
"gatsby-image": "3.3.0",
"gatsby-plugin-algolia-docsearch": "^1.0.5",
"gatsby-plugin-google-analytics": "3.3.0",
"gatsby-plugin-gtag": "1.0.13",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "3.3.0",
"gatsby-plugin-nprogress": "^3.3.0",
"gatsby-plugin-react-helmet": "4.3.0",
"gatsby-plugin-sharp": "3.3.0",
"gatsby-plugin-sitemap": "3.3.0",
"gatsby-plugin-typescript": "3.3.0",
"gatsby-source-filesystem": "3.3.0",
"gatsby-transformer-sharp": "3.3.0",
"gatsby-transformer-typescript-css-modules": "^1.0.14",
"little-state-machine": "4.1.0",
"prismjs": "^1.23.0",
"ptz-i18n": "^1.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-github-btn": "1.2.0",
"react-helmet": "6.1.0",
"react-hook-form": "6.0.0-rc.1",
"react-simple-animate": "^3.3.12",
"react-simple-img": "2.3.9",
"react-sortablejs": "1.5.1",
"sortablejs": "1.10.2"
},
"devDependencies": {
"@types/react-helmet": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"gatsby-plugin-offline": "^4.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"typescript": "^4.2.4",
"typescript-plugin-css-modules": "^3.2.0"
},
"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"
]
}
}