forked from cloudgrey-io/the-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.69 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
{
"name": "TheApp",
"version": "1.10.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build-ios-release": "react-native run-ios --configuration Release",
"build-android": "cd android && ./gradlew assembleDebug",
"build-android-release": "cd android && ./gradlew clean assembleRelease && ./sign-android-release-apk.sh",
"dev-android": "react-native run-android",
"dev-ios": "react-native run-ios",
"show-ios-debug": "echo \"$(pwd)/ios/build/Build/Products/Debug-iphonesimulator/TheApp.app\"",
"show-ios-release": "echo \"$(pwd)/ios/build/Build/Products/Release-iphonesimulator/TheApp.app\"",
"show-android-release": "echo \"$(pwd)/android/app/build/outputs/apk/release/app-release.apk\"",
"show-android-debug": "echo \"$(pwd)/android/app/build/outputs/apk/debug/app-debug.apk\"",
"test": "jest"
},
"dependencies": {
"bluebird": "^3.5.3",
"lodash": "^4.17.10",
"react": "16.2.0",
"react-native": "0.53.2",
"react-native-android-sms-listener": "^0.5.0",
"react-native-camera": "^1.1.1",
"react-native-elements": "^1.0.0-beta2",
"react-native-navigation": "^1.1.382",
"react-native-vector-icons": "^4.5.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "22.2.2",
"babel-preset-react-native": "4.0.0",
"eslint": "^3.10.2",
"eslint-config-appium": "^2.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"jest": "22.3.0",
"metro-bundler": "^0.22.1",
"react-test-renderer": "16.2.0"
},
"jest": {
"preset": "react-native"
}
}