-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.3 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@hookform/devtools",
"version": "2.2.1",
"description": "React Hook Form dev tool to help debugging forms",
"main": "dist/index.js",
"umd:main": "dist/index.umd.development.js",
"unpkg": "dist/index.umd.development.js",
"jsdelivr": "dist/index.umd.development.js",
"jsnext:main": "dist/index.esm.js",
"source": "src/index.tsx",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "node rollup/writeCjsEntryFile.js && rollup -c",
"build:watch": "node rollup/writeCjsEntryFile.js && rollup -c -w",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"lint:types": "tsc --noEmit",
"test": "jest --runInBand",
"test:watch": "npm run test -- --watchAll --coverage",
"postversion": "git push && git push origin v$npm_package_version",
"prepublishOnly": "npm run lint && npm run lint:types && npm test && npm run build",
"changeset": "changeset",
"release": "changeset publish"
},
"keywords": [
"react",
"react-component",
"devtool",
"devtools",
"form",
"forms",
"form-validation",
"validation",
"hookform",
"react-hook-form",
"typescript"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/react-hook-form/devtools.git"
},
"author": "bluebill1049 <bluebill1049@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-hook-form/devtools/issues"
},
"homepage": "https://react-hook-form.com",
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@types/lodash": "^4.14.152",
"little-state-machine": "^3.0.1",
"lodash": "^4.17.15",
"re-resizable": "^6.9.0",
"react-simple-animate": "^3.3.8"
},
"devDependencies": {
"@changesets/changelog-github": "^0.2.6",
"@changesets/cli": "^2.9.2",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "6.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.10.7",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-hook-form": ">=6.5.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:types && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint:fix"
],
"*.{md,json}": [
"prettier --write"
]
}
}