-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.65 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
{
"name": "reactNavigationExample",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build-ios": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ./CodePush/ios/main.jsbundle --assets-dest ./CodePush/ios",
"build-android-for-codepush": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output ./CodePush/android/index.android.bundle --assets-dest ./CodePush/android ",
"build-android-for-apk": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"test": "jest"
},
"dependencies": {
"axios": "^0.18.0",
"md5": "^2.2.1",
"mobx": "^3.6.1",
"mobx-react": "^4.4.2",
"react": "16.6.0-alpha.8af6728",
"react-native": "0.55.3",
"react-native-camera": "git+https://[email protected]/react-native-community/react-native-camera",
"react-native-circular-slider": "git+https://github.com/zgatrying/react-native-circular-slider.git",
"react-native-elements": "^1.0.0-beta7",
"react-native-safe-area-view": "^0.11.0",
"react-native-svg": "^8.0.8",
"react-native-vector-icons": "^6.1.0",
"react-navigation": "^2.18.0",
"react-navigation-mobx-helpers": "^2.0.0",
"react-pullrefresh": "1.6.7"
},
"devDependencies": {
"babel-jest": "23.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-react-native": "4.0.0",
"jest": "23.6.0",
"react-dom": "^16.6.3"
},
"jest": {
"preset": "react-native"
}
}