-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.34 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
{
"name": "rabbit-app",
"version": "1.0.0",
"description": "Rabbit App is a lite handy Reddit client for iOS and Android.",
"license": "MIT",
"author": "Batyr Kanzitdinov <[email protected]>",
"homepage": "https://github.com/kanzitelli/rabbit-app",
"scripts": {
"android": "npx react-native run-android",
"android:release": "yarn android --variant release",
"ios": "npx react-native run-ios",
"ios:pods": "npx pod-install",
"start": "npx react-native start",
"test": "jest",
"release": "dotenv npx release-it",
"package:install": "yarn add $* && yarn ios:pods && yarn ios && yarn android"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.0",
"dayjs": "^1.9.1",
"expo": "^39.0.3",
"expo-mail-composer": "^8.4.0",
"expo-network": "^2.3.0",
"expo-updates": "^0.3.5",
"hermes-engine": "0.5.2-rc1",
"lodash": "^4.17.20",
"mobx": "^6.0.1",
"mobx-persist": "^0.4.1",
"mobx-react": "^7.0.0",
"mobx-state-tree": "^3.17.2",
"react": "^16.13.1",
"react-native": "^0.63.2",
"react-native-device-info": "^6.2.0",
"react-native-gesture-handler": "^1.8.0",
"react-native-navigation": "^7.1.0",
"react-native-navigation-hooks": "^6.2.0",
"react-native-rate": "^1.2.4",
"react-native-reanimated": "^2.0.0-alpha.7",
"react-native-unimodules": "^0.11.0",
"react-native-vector-icons": "^7.1.0",
"react-native-webview": "^10.9.2",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/runtime": "^7.11.2",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/react-native": "^0.63.23",
"@types/react-native-vector-icons": "^6.4.6",
"@types/react-redux": "^7.1.9",
"@types/react-test-renderer": "^16.9.3",
"babel-jest": "^26.3.0",
"dotenv-cli": "^4.0.0",
"jest": "^26.4.2",
"metro-react-native-babel-preset": "^0.63.0",
"react-test-renderer": "^16.13.1",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}