forked from oblador/react-native-collapsible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 861 Bytes
/
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
{
"name": "react-native-collapsible",
"version": "1.5.3",
"description": "Animated collapsible component for React Native using the Animated API. Good for accordions, toggles etc",
"main": "Collapsible.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint --ext js,ts ."
},
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.5",
"eslint": "^5.2.0",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"react": "16.4.1",
"react-native": "0.56.0",
"typescript": "^3.5.3"
},
"dependencies": {
"prop-types": "^15.6.2",
"react-native-reanimated": "^1.13.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
}
}