This repository has been archived by the owner on Jan 14, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
58 lines (58 loc) · 1.98 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
{
"name": "react-hook-form-input",
"version": "1.1.10",
"description": "Wrapper component for controlled inputs",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": "[email protected]:react-hook-form/react-hook-form-input.git",
"author": "Beier Luo <[email protected]>",
"license": "MIT",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --runInBand",
"test:watch": "yarn test -- --watchAll",
"clean": "rm -rf dist",
"build": "rollup -c",
"prettier": "prettier --write './src/**/*.ts' './src/**/*.tsx' --config ./.prettierrc",
"lint": "yarn lint:check --fix && yarn prettier",
"lint:check": "eslint ./src --ext .tsx,.ts --ignore-pattern *.test.ts --report-unused-disable-directives",
"postrelease": "yarn publish && git push --follow-tags",
"prepublishOnly": "yarn lint && yarn test && yarn run clean && yarn build"
},
"devDependencies": {
"@material-ui/core": "^4.7.1",
"@testing-library/react": "^9.3.2",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.4",
"@types/react-select": "^3.0.8",
"@types/react-test-renderer": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"bundlesize": "^0.18.0",
"coveralls": "^3.0.3",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^2.2.0",
"husky": ">=1",
"jest": "^24.7.1",
"lint-staged": ">=8",
"mutationobserver-shim": "^0.3.3",
"prettier": "^1.19.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hook-form": "^3.28.0",
"react-select": "^3.0.8",
"react-test-renderer": "^16.9.0",
"rollup": "^1.20.3",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.25.2",
"ts-jest": "^24.0.2",
"typescript": "^3.7.2"
},
"peerDependencies": {
"react": "^16.8.0",
"react-hook-form": "^3.28.0"
}
}