forked from software-mansion/react-native-gesture-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 761 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 761 Bytes
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
{
"name": "GestureHandlerExample",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"postinstall":
"rm -rf node_modules/react-native-gesture-handler/{.git,node_modules,Example,AndroidNativeExample}"
},
"dependencies": {
"react": "^16.3.2",
"react-native": "^0.55.3",
"react-native-gesture-handler": "file:../",
"react-native-vector-icons": "^4.4.3",
"react-navigation": "^1.5.11"
},
"jest": {
"preset": "react-native"
},
"devDependencies": {
"babel-jest": "^22.0.4",
"babel-preset-react-native": "^4.0.0",
"jest": "^22.0.4",
"jest-react-native": "^18.0.0",
"react-test-renderer": "^16.2.0"
}
}