diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2024-08-05 22:18:26 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2024-08-05 22:18:26 +0900 |
commit | 5ecf8815589726eefc173e9d651e8aef29165589 (patch) | |
tree | b635ba1d8352c53b6efbe4cba958f7163f2ed609 | |
parent | 70142a39acd769c858db7aa33d2d11b17483d765 (diff) |
react-hook-form を追加
-rw-r--r-- | package-lock.json | 16 | ||||
-rw-r--r-- | package.json | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/package-lock.json b/package-lock.json index fe11f01..7d78c8b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,7 @@ "dependencies": { "react": "^18.3.1", "react-dom": "^18.3.1", + "react-hook-form": "^7.52.2", "react-router-dom": "^6.25.1", "zod": "^3.23.8" }, @@ -2384,6 +2385,21 @@ "react": "^18.3.1" } }, + "node_modules/react-hook-form": { + "version": "7.52.2", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.52.2.tgz", + "integrity": "sha512-pqfPEbERnxxiNMPd0bzmt1tuaPcVccywFDpyk2uV5xCIBphHV5T8SVnX9/o3kplPE1zzKt77+YIoq+EMwJp56A==", + "engines": { + "node": ">=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18 || ^19" + } + }, "node_modules/react-router": { "version": "6.25.1", "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.25.1.tgz", diff --git a/package.json b/package.json index 85de3ab..ad9f9f7 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "dependencies": { "react": "^18.3.1", "react-dom": "^18.3.1", + "react-hook-form": "^7.52.2", "react-router-dom": "^6.25.1", "zod": "^3.23.8" }, |