forked from react-hook-form/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.96 KB
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
{
"name": "react-hook-form-website",
"description": "React hooks for form validation without the hassle.",
"version": "3.0.0",
"author": "beier luo",
"engines": {
"node": "12.x"
},
"dependencies": {
"gatsby": "2.19.11",
"gatsby-image": "2.2.40",
"gatsby-plugin-google-analytics": "2.1.35",
"gatsby-plugin-gtag": "1.0.12",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-manifest": "2.2.41",
"gatsby-plugin-nprogress": "^2.1.19",
"gatsby-plugin-react-helmet": "3.1.22",
"gatsby-plugin-sharp": "2.4.5",
"gatsby-plugin-sitemap": "2.2.27",
"gatsby-plugin-typescript": "2.1.27",
"gatsby-source-filesystem": "2.1.48",
"gatsby-transformer-sharp": "2.3.14",
"little-state-machine": "^2.10.6",
"prismjs": "^1.19.0",
"ptz-i18n": "^1.0.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-github-btn": "1.1.1",
"react-helmet": "5.2.1",
"react-hook-form": "3.29.4",
"react-simple-animate": "^3.3.4",
"react-simple-img": "2.3.7",
"react-sortablejs": "1.5.1",
"sortablejs": "1.10.1"
},
"devDependencies": {
"gatsby-plugin-offline": "^3.0.34",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "1.19.1"
},
"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"
},
"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",
"npm run prettier",
"git add"
]
}
}