This repository has been archived by the owner on Dec 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
145 lines (145 loc) · 4.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "ConnectMe",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"lint": "glow",
"precommit": "lint-staged",
"prepush": "npm test && npm run lint",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"coverage": "npm test -- --coverage",
"test:e2e": "detox test -c ios.sim.release",
"test:e2e:build": "detox build",
"test:e2e:android": "detox build --configuration android.emu.debug && detox test --configuration android.emu.debug",
"pod:dev:install": "cd ios && CONNECTME_DEBUG=true pod install",
"pod:install": "cd ios && pod install"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --no-semi --trailing-comma es5 --write \"{app,__{tests,mocks}__}/**/*.js\"",
"git add"
]
},
"dependencies": {
"@types/color": "^3.0.0",
"ajv": "^5.2.2",
"apptentive-react-native": "5.3.1",
"bignumber.js": "^7.2.1",
"buffer": "^5.1.0",
"color": "^3.0.0",
"lodash.debounce": "^4.0.8",
"lodash.findkey": "^4.6.0",
"lodash.get": "^4.4.2",
"lodash.groupby": "^4.6.0",
"lodash.memoize": "^4.1.2",
"lodash.merge": "^4.6.0",
"lodash.throttle": "^4.1.1",
"moment": "^2.20.1",
"react": "16.0.0",
"react-native": "0.51.0",
"react-native-animatable": "1.2.4",
"react-native-branch": "2.2.4",
"react-native-camera": "0.12",
"react-native-document-picker": "^2.1.0",
"react-native-elements": "0.19.0",
"react-native-fetch-blob": "0.10.8",
"react-native-firebase": "^4.3.8",
"react-native-flip-toggle-button": "^1.0.5",
"react-native-image-crop-picker": "^0.20.1",
"react-native-image-resizer": "^1.0.0",
"react-native-keep-screen-on": "^1.2.0",
"react-native-keyboard-aware-scroll-view": "^0.4.4",
"react-native-modal": "5.0.0",
"react-native-pbkdf2": "https://github.com/quan-to/react-native-pbkdf2",
"react-native-randombytes": "^3.2.0",
"react-native-sensitive-info": "5.2.0",
"react-native-share": "^1.0.27",
"react-native-size-matters": "^0.1.2",
"react-native-splash-screen": "3.0.6",
"react-native-svg": "^7.0.3",
"react-native-swiper": "^1.5.13",
"react-native-switch": "^1.5.0",
"react-native-touch-id": "4.1.1",
"react-native-unique-id": "^1.0.4",
"react-native-vector-icons": "4.5.0",
"react-native-version-number": "^0.3.3",
"react-native-zip-archive": "^2.2.6",
"react-navigation": "2.11.2",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-saga": "0.16.0",
"url": "0.11.0",
"url-parse": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "22.2.0",
"babel-preset-react-native": "4.0.0",
"child-process-async": "^1.0.1",
"detox": "^9.0.5",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.47.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"flow-annotation-check": "^1.8.1",
"flow-bin": "0.57.3",
"flow-typed": "2.3.0",
"glow": "^1.2.2",
"husky": "^0.13.3",
"jest": "22.2.1",
"lint-staged": "^3.4.1",
"node-fetch": "next",
"prettier": "1.10.2",
"react-devtools": "3.1.0",
"react-test-renderer": "16.0.0",
"reactotron-react-native": "1.14.0",
"reactotron-redux": "1.13.0",
"redux-saga-test-plan": "^3.6.0",
"remote-redux-devtools": "^0.5.12",
"remotedev-rn-debugger": "0.8.3"
},
"rnpm": {
"assets": [
"./app/fonts/"
]
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|jest-fetch-mock|apptentive-react-native|react-native-version-number)"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "RelativeImageStub"
},
"setupFiles": [
"<rootDir>/__mocks__/setup.js"
],
"coverageDirectory": "<rootDir>/coverage",
"testPathIgnorePatterns": [
"/e2e/",
"/node_modules/"
]
},
"detox": {
"configurations": {
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/ConnectMe.app",
"build": "xcodebuild -workspace ios/ConnectMe.xcworkspace -scheme ConnectMe -configuration release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 7"
},
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "pushd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && popd",
"type": "android.emulator",
"name": "Nexus_5X_API_26"
}
},
"test-runner": "jest",
"runner-config": "e2e/config.json"
}
}