-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 2.14 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
{
"name": "my-new-project",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "REACT_DEBUGGER='open -g rndebugger://set-debugger-loc?port=8081 ||' node node_modules/react-native/local-cli/cli.js start",
"preandroid": "npm run predeploy:android",
"android": "react-native run-android",
"preios": "node dev/ios",
"ios": "react-native run-ios",
"test": "jest",
"prettier": "prettier './src/**/*.{js,scss}' --write",
"flow": "flow",
"glow": "glow",
"glow:watch": "glow --watch",
"deploy:android": "cd android && fastlane playstore",
"predeploy:android": "node dev/fastlane",
"predeploy:ios": "npm run preios",
"deploy:ios": "cd ios && fastlane beta",
"flow-typed-install": "flow-typed install",
"flow-typed-create-stub-react-native": "flow-typed create-stub react-native",
"postinstall": "npm run flow-typed-install && npm run flow-typed-create-stub-react-native"
},
"dependencies": {
"@react-native-community/async-storage": "1.7.0",
"apsl-react-native-button": "3.1.1",
"array-flat-polyfill": "1.0.1",
"lottie-ios": "3.1.5",
"lottie-react-native": "3.3.2",
"react": "16.12.0",
"react-native": "0.61.5",
"react-native-auth0": "2.1.0",
"react-native-camera": "3.14.0",
"react-native-config": "0.12.0",
"react-native-gesture-handler": "1.5.2",
"react-native-keychain": "4.0.3",
"react-native-reanimated": "1.4.0",
"react-native-screens": "1.0.0-alpha.23",
"react-native-touch-id": "4.4.1",
"react-native-vector-icons": "6.6.0",
"react-navigation": "4.0.10",
"react-navigation-stack": "1.10.3",
"react-navigation-tabs": "2.6.2",
"react-redux": "7.1.3",
"redux": "4.0.4",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3",
"reselect": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.7.5",
"@babel/runtime": "7.7.5",
"dotenv": "8.2.0",
"flow-bin": "0.113.0",
"flow-typed": "2.6.2",
"glow": "1.2.2",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.57.0",
"prettier": "1.19.1",
"react-test-renderer": "16.12.0"
},
"jest": {
"preset": "react-native"
}
}