-
Notifications
You must be signed in to change notification settings - Fork 298
/
package.json
95 lines (95 loc) · 2.78 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-native-modalize",
"version": "2.1.1",
"description": "A highly customizable modal/bottom sheet that loves scrolling content.",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib/* && yarn lint && tsc",
"prepare": "yarn build",
"lint": "eslint 'src/**/*.ts?(x)' && prettier --list-different \"**/*.{json,md,js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"{docs,examples,src}/**/*.{json,md,js,jsx,ts,tsx}\"",
"postversion": "sh ./post-version.sh",
"watch:modalize": "yarn tsc --watch",
"watch:expo": "concurrently \"yarn watch:modalize\" \"yarn cpx 'src/**/*' 'examples/expo/node_modules/react-native-modalize' --watch\"",
"watch:react-native-navigation": "concurrently \"yarn watch:modalize\" \"yarn cpx 'src/**/*' 'examples/react-native-navigation/node_modules/react-native-modalize' --watch\"",
"watch:react-navigation": "concurrently \"yarn watch:modalize\" \"yarn cpx 'src/**/*' 'examples/react-navigation/node_modules/react-native-modalize' --watch\""
},
"keywords": [
"react-native",
"react",
"native",
"modal",
"bottom sheet",
"bottom",
"sheet",
"scrollView",
"flatList",
"sectionList",
"scroll",
"swipe",
"keyboard",
"snap",
"android",
"ios"
],
"author": "Jérémy Barbet",
"license": "MIT",
"homepage": "https://github.com/jeremybarbet/react-native-modalize",
"repository": {
"type": "git",
"url": "https://github.com/jeremybarbet/react-native-modalize"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"arrowParens": "avoid",
"semi": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@types/react": "17.0.29",
"@types/react-native": "0.65.6",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"concurrently": "5.3.0",
"cpx": "1.5.0",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-native": "3.10.0",
"husky": "4.3.0",
"lint-staged": "10.5.2",
"prettier": "2.2.1",
"react": "17.0.2",
"react-native": "0.66.0",
"react-native-gesture-handler": "1.10.3",
"typescript": "3.9.7"
},
"peerDependencies": {
"react": "> 15.0.0",
"react-native": "> 0.50.0",
"react-native-gesture-handler": "> 1.0.0"
}
}