-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
82 lines (82 loc) · 2.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "arxiv-papers",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"detox": "^7.0.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"flow-bin": "^0.66.0",
"fs-extra": "^4.0.3",
"jest": "^22.1.4",
"prettier-eslint": "^8.8.1",
"react-test-renderer": "16.0.0-beta.5",
"replace-in-file": "^3.1.0"
},
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"rename": "node ./bin/rename.js",
"start": "react-native start",
"test:unitIntegration": "jest . --config=./config/tests/unitIntegrationJest.json --watch",
"test:e2e": "detox test -c android.emu.debug",
"test:e2e:build": "detox build -c android.emu.debug"
},
"detox": {
"test-runner": "jest",
"runner-config": "config/tests/e2eDetox.json",
"configurations": {
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew app:assembleDebug app:assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"name": "Nexus_5X_API_27"
},
"android.emu.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
"build": "cd android && ./gradlew app:assembleRelease app:assembleAndroidTest -DtestBuildType=release && cd ..",
"type": "android.emulator",
"name": "Nexus_5X_API_27"
}
}
},
"dependencies": {
"babel-plugin-transform-remove-console": "^6.9.0",
"fbjs": "^0.8.16",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"native-base": "^2.3.7",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-native": "^0.51.0",
"react-native-billing": "^2.7.0",
"react-native-extended-stylesheet": "^0.8.1",
"react-native-fetch-blob": "^0.10.8",
"react-native-firebase": "^3.2.2",
"react-native-gesture-handler": "^1.0.0-alpha.39",
"react-native-md5": "^1.0.0",
"react-native-offscreen-toolbar": "^1.0.10",
"react-native-snackbar": "^0.4.6",
"react-native-tab-view": "^0.0.74",
"react-native-vector-icons": "^4.5.0",
"react-native-xml2js": "^1.0.3",
"react-navigation": "^1.2.1",
"react-navigation-redux-helpers": "^1.0.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-observable": "^0.17.0",
"redux-persist": "^5.4.0",
"redux-persist-transform-filter": "0.0.16",
"reselect": "^3.0.1",
"rxjs": "^5.5.6",
"uglify-es": "^3.3.9",
"uuid": "^3.2.1"
}
}