-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 894 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 894 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
29
30
{
"name": "ReactNativeAnimationExamples",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"android:deploy:alpha": "bundle exec fastlane android alpha",
"android:deploy:beta": "bundle exec fastlane android beta",
"android:deploy:release": "bundle exec fastlane android production",
"test": "jest"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.0",
"react-native": "0.57.0",
"react-native-config": "^0.11.5",
"react-native-elements": "^0.19.1",
"react-native-maps": "^0.21.0",
"react-native-vector-icons": "^5.0.0",
"react-navigation": "^2.14.2",
"rn-viewpager": "^1.2.9"
},
"devDependencies": {
"metro-react-native-babel-preset": "^0.45.0"
},
"jest": {
"preset": "react-native"
}
}