-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.18 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "use-auto-focus-inputs",
"version": "0.1.4",
"description": "Single react-native hook to manage auto focus of TextInput",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"lint:fix": "yarn lint --fix",
"prettier:fix": "prettier --config .prettierrc \"**/*.{json,js,jsx,ts,tsx,css,scss,md}\" --write",
"build": "tsc --project tsconfig.build.json",
"release": "yarn build && yarn changeset publish",
"prepare": "yarn build && husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Groszczu/use-auto-focus-inputs.git"
},
"keywords": [
"react-native",
"hooks",
"react-hooks",
"text-input",
"auto-focus",
"text-input-auto-focus",
"form"
],
"author": "Groszczu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Groszczu/use-auto-focus-inputs/issues"
},
"homepage": "https://github.com/Groszczu/use-auto-focus-inputs#readme",
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@testing-library/jest-native": "^4.0.2",
"@testing-library/react-native": "^7.2.0",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.15",
"@types/react-native": "^0.64.12",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"react": "^17.0.1",
"react-native": "^0.64.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.9.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59"
},
"resolutions": {
"react-native/@jest/create-cache-key-function": "^27.0.2"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint:fix",
"yarn prettier:fix"
],
"*.{md,json,yml}": [
"yarn prettier:fix"
]
},
"packageManager": "yarn@3.3.0"
}