-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.82 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ImClient",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"bundle-ios": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.ios.js --platform ios --dev false --bundle-output ./ios/bundle/index.ios.jsbundle --assets-dest ./ios/bundle",
"bundle-android": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output ./android/app/src/main/assets/index.android.bundle --assets-dest ./android/app/src/main/res/",
"build-android": "cd android && ./gradlew installRelease",
"build-dev-android": "cd android && ./gradlew assembleDevDebug",
"build-pro-android": "cd android && ./gradlew assembleRelease",
"dev": "cross-env NODE_ENV=development",
"build": "cross-env NODE_ENV=production"
},
"dependencies": {
"cross-env": "^5.0.5",
"immutable": "^3.8.1",
"react": "16.0.0-alpha.6",
"react-native": "0.44.3",
"react-native-animatable": "^1.2.3",
"react-native-bottom-sheet": "^1.0.2",
"react-native-bottomsheet": "^1.6.3",
"react-native-extended-stylesheet": "^0.6.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-image-crop-picker": "^0.17.2",
"react-native-image-picker": "^0.26.7",
"react-native-image-zoom-viewer": "^2.0.16",
"react-native-img-cache": "^1.4.0",
"react-native-photo-upload": "^1.0.3",
"react-native-vector-icons": "^4.3.0",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.6",
"realm": "^1.11.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3",
"xmldom": "^0.1.27"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-react-native": "3.0.2",
"jest": "20.0.4",
"react-test-renderer": "16.0.0-alpha.6"
},
"jest": {
"preset": "react-native"
}
}