-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.88 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
{
"name": "react-navigation-universal",
"description": "A react-navigation demo for native AND web.",
"version": "0.0.64",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"postinstall": "patch-package",
"clean": "rimraf .env .env.json web-build",
"build": "yarn clean && expo build:web",
"test": "jest",
"start": "node server.js",
"native-debugger": "open -g 'rndebugger://set-debugger-loc?port=19001'",
"android": "expo start --android",
"ios": " yarn native-debugger && expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"jest": {
"preset": "jest-expo",
"clearMocks": true,
"coverageDirectory": "coverage",
"setupFilesAfterEnv": [
"<rootDir>utils/jest-setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"@react-navigation/web": "https://github.com/bdombro/web.git",
"@types/react-test-renderer": "^16.9.0",
"core-js": "^3.2.1",
"expo": "^36.0.0",
"patch-package": "^6.1.4",
"query-string": "^6.8.3",
"ramda": "^0.26.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-hot-loader": "^4.12.12",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz",
"react-native-animatable": "^1.3.2",
"react-native-gesture-handler": "~1.5.0",
"react-native-hooks": "^0.9.0",
"react-native-paper": "^3.0.0-alpha.5",
"react-native-reanimated": "~1.4.0",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-web": "^0.11.7",
"react-navigation": "^4.0.5",
"react-navigation-drawer": "^2.1.1",
"react-navigation-fluid-transitions": "^0.3.2",
"react-navigation-hooks": "^1.0.3",
"react-navigation-material-bottom-tabs": "^2.1.1",
"react-navigation-stack": "^1.8.0",
"react-navigation-tabs": "^2.5.3",
"react-navigation-transitions": "^1.0.12",
"react-redux": "^7.1.1",
"reactotron-redux": "^3.1.2",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"styled-jsx": "^3.2.2"
},
"devDependencies": {
"@expo/webpack-config": "^0.10.11",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.18",
"@types/ramda": "^0.26.22",
"@types/react": "^16.9.0",
"@types/react-native": "^0.60.15",
"@types/react-redux": "^7.1.3",
"@types/styled-jsx": "^2.2.8",
"babel-jest": "^24.9.0",
"babel-preset-expo": "^8.0.0",
"copy-webpack-plugin": "^5.1.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"express": "^4.17.1",
"jest-expo": "^36.0.0",
"morgan": "^1.9.1",
"react-test-renderer": "16.8.6",
"reactotron-react-js": "^3.3.2",
"reactotron-react-native": "^4.0.0",
"shrink-ray-current": "^4.0.0",
"typescript": "^3.7.2",
"webpack-bundle-analyzer": "^3.4.1"
}
}