-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "@hookform/codemod",
"version": "1.0.0",
"license": "MIT",
"bin": "./dist/bin/hookform-codemod.js",
"scripts": {
"build": "tsc",
"test": "jest --bail",
"lint": "eslint . --ext .ts,.js --ignore-path .gitignore",
"lint:types": "tsc --noEmit",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"files": [
"dist"
],
"dependencies": {
"chalk": "^4.1.0",
"execa": "^5.0.0",
"globby": "^11.0.1",
"inquirer": "^7.3.3",
"is-git-clean": "^1.1.0",
"jscodeshift": "^0.11.0",
"meow": "^8.1.0"
},
"devDependencies": {
"@types/jscodeshift": "^0.7.2",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": ">=10",
"pinst": "^2.1.4",
"prettier": "2.2.1",
"react-hook-form": "^6.14.0",
"semantic-release": "^17.3.8",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}