forked from cooperka/react-native-snackbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 802 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
{
"name": "SnackbarExample",
"version": "0.0.1",
"private": true,
"scripts": {
"preinstall": "cd .. && yarn run build",
"postinstall": "rm -rf node_modules/react-native-snackbar/node_modules node_modules/react-native-snackbar/example",
"sync": "./sync.sh",
"start": "react-native start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"test": "jest"
},
"dependencies": {
"react": "16.10.2",
"react-native": "0.61.2",
"react-native-snackbar": "file:.."
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/runtime": "7.6.3",
"babel-jest": "24.9.0",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.56.0",
"react-test-renderer": "16.10.2"
},
"jest": {
"preset": "react-native"
}
}