-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.23 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
59
60
61
62
63
{
"name": "formik-focus-error",
"version": "0.0.5",
"description": "A React component to focus field with error inside Formik",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/ekabolotina/formik-focus-error.git",
"bugs": "https://github.com/ekabolotina/formik-focus-error/issues",
"author": "Ivan <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"format": "prettier",
"format-all": "yarn run format \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint-js": "eslint",
"lint-js-all": "yarn run lint-js \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "yarn run lint-js-all && yarn format-all --check",
"test": "jest",
"build": "rm -rf ./dist && tsc -p tsconfig.build.json && NODE_ENV=production babel src --out-dir dist --extensions \".ts,.tsx\"",
"prepare": "is-ci || husky install",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"lodash": ">=3.7.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.176",
"@types/react": "^16.13.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"formik": "^2.2.9",
"husky": "^7.0.4",
"is-ci": "^3.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"react": ">=16.8.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"formik": "^2.0.0",
"react": ">=16.8.0"
},
"files": [
"dist"
]
}