-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
74 lines (74 loc) · 2.73 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
{
"name": "Nearby",
"version": "0.4.3",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"bundle:ios": "node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file index.js --bundle-output ios/Nearby/main.jsbundle --dev=false --verbose",
"bundle:android": "node ./node_modules/react-native/local-cli/cli.js 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",
"pretest": "./node_modules/.bin/eslint -c .eslintrc --ext .js src",
"test": "jest"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|apsl-react-native-button,react-native-device-info|react-clone-referenced-element)"
],
"collectCoverage": true,
"verbose": true
},
"dependencies": {
"@expo/react-native-action-sheet": "git+https://github.com/expo/react-native-action-sheet.git",
"md5": "^2.2.1",
"moment": "^2.17.1",
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-native": "0.51.0",
"react-native-fbsdk": "^0.6.3",
"react-native-fetch-blob": "^0.10.8",
"react-native-google-analytics-bridge": "^5.3.3",
"react-native-image-picker": "^0.26.7",
"react-native-interactable": "^0.1.7",
"react-native-invertible-scroll-view": "^1.1.0",
"react-native-parsed-text": "0.0.20",
"react-native-progress": "^3.4.0",
"react-native-root-siblings": "^2.2.0",
"react-native-router-flux": "3.43.0",
"react-native-side-menu": "^0.20.1",
"react-native-tab-view": "0.0.70",
"react-native-vector-icons": "^4.4.0",
"react-native-video": "^2.0.0",
"react-redux": "^5.0.6",
"reconnecting-websocket": "^3.0.3",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-orm": "^0.9.0-rc.3",
"redux-persist": "^4.4.2",
"redux-thunk": "^2.1.0",
"shallowequal": "1.0.2",
"uuid": "3.1.0"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-plugin-transform-remove-console": "^6.8.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react-native": "4.0.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.16.3",
"eslint": "^4.11.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.5.1",
"jest": "21.2.1",
"jest-react-native": "^18.0.0",
"react-test-renderer": "16.1.1"
}
}