-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "app",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node ./node_modules/jest/bin/jest.js --watchAll",
"e2e": "detox test --configuration ios.sim --debug-synchronization 1000"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/samples": "2.1.1",
"ex-react-native-i18n": "0.0.4",
"expo": "^30.0.1",
"expo-analytics": "^1.0.7",
"firebase": "^5.5.6",
"linkify-it": "^2.0.3",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-30.0.0.tar.gz",
"react-native-expo-image-cache": "^3.2.0",
"react-native-hyperlink": "0.0.14",
"react-navigation": "^2.16.0",
"react-navigation-redux-helpers": "^2.0.8",
"react-navigation-tabs": "^0.8.4",
"react-redux": "^5.1.0",
"redux": "^4.0.1",
"sentry-expo": "^1.9.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"detox": "^7.2.0",
"detox-expo-helpers": "^0.2.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest-expo": "30.0.0",
"mocha": "^5.2.0"
},
"detox": {
"configurations": {
"ios.sim": {
"binaryPath": "bin/Exponent-2.7.0.app",
"type": "ios.simulator",
"name": "iPhone X"
}
}
}
}