This repository was archived by the owner on Jul 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "react-hook-form-validation",
"version": "3.0.1",
"description": "React Hook for Form Validation",
"repository": "https://github.com/boonya/react-hook-form-validation",
"homepage": "https://boonya.github.io/react-hook-form-validation/",
"main": "dist/index.js",
"engines": {
"npm": ">=7",
"node": ">=14"
},
"scripts": {
"start": "styleguidist server",
"lint": "eslint .",
"test": "jest",
"test:ci": "jest --coverage --coverageReporters=text --verbose",
"build": "tsc",
"build:docs": "styleguidist build"
},
"keywords": [
"react",
"hook",
"validation",
"validator",
"form",
"forms",
"form-validation",
"validity",
"useValidation"
],
"author": "Serhii [boonya] Buinytskyi",
"license": "MIT",
"peerDependencies": {
"react": "^16.8 || ^17.0"
},
"dependencies": {
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3",
"eslint": "^8.7.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.7",
"react-styleguidist": "^11.2.0",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.3",
"ts-loader": "^8.3.0",
"typescript": "^4.5.5",
"webpack": "^4.46.0"
}
}