-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
61 lines (61 loc) · 1.94 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
{
"name": "my-new-project",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"sideEffects": [
"src/rematch/Gate.js",
"src/rematch/dispatch.js",
"src/rematch/models.js",
"src/rematch/store.js"
],
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"build": "expo build:web",
"debug-prod": "expo build:web --no-pwa && serve ./web-build",
"predeploy": "npm run build && expo optimize",
"deploy": "netlify deploy --dir web-build --prod",
"test": "node ./node_modules/jest/bin/jest.js --watchAll"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/react-native-action-sheet": "^3.2.0",
"@react-navigation/web": "^1.0.0-alpha.9",
"@rematch/core": "^1.1.0",
"@rematch/persist": "^1.1.6",
"date-format": "^2.1.0",
"expo": "^35.0.0",
"expo-av": "^7.0.1",
"expo-blur": "^7.0.0",
"expo-camera": "^7.0.0",
"expo-linear-gradient": "^7.0.1",
"i18n-js": "^3.3.0",
"react": "16.10.2",
"react-dom": "^16.10.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-animatable": "^1.3.2",
"react-native-elements": "^1.2.5",
"react-native-gesture-handler": "^1.4.1",
"react-native-iphone-x-helper": "^1.2.1",
"react-native-is-iphonex": "^1.0.1",
"react-native-paper": "^2.16.0",
"react-native-reanimated": "git://github.com/EvanBacon/react-native-reanimated.git#refs/heads/@evanbacon/more-web-support",
"react-native-web": "^0.11.7",
"react-navigation": "^4.0.10",
"react-navigation-drawer": "^2.2.2",
"react-navigation-stack": "^1.9.3",
"react-navigation-tabs": "^2.5.5",
"react-redux": "^6.0.1",
"react-transition-group": "^4.3.0",
"redux": "^4.0.4",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"babel-preset-expo": "^7.1.0",
"jest-expo": "35.0.0"
}
}