-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.17 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.17 KB
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
{
"name": "reactnativeSuperUI",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --simulator 'iPhone 12'",
"start": "set PORT=9000 && react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@expo/react-native-action-sheet": "^3.13.0",
"@gorhom/bottom-sheet": "^2",
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/clipboard": "^1.5.1",
"@react-navigation/bottom-tabs": "^6.0.9",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.2.1",
"faker": "^5.5.3",
"lodash": "^4.17.21",
"lottie-react-native": "^4.1.3",
"mobx": "4.9.3",
"mobx-react": "5.4.3",
"react": "17.0.2",
"react-native": "0.66.1",
"react-native-calendars": "^1.1280.0",
"react-native-drawer": "^2.5.1",
"react-native-gesture-handler": "1.10.3",
"react-native-image-crop-picker": "^0.37.3",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": "^1.13.3",
"react-native-root-toast": "^3.2.1",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.8.0",
"react-native-side-menu": "^1.1.3",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "^12.1.1",
"react-native-swipe-list-view": "^3.2.9",
"react-native-vector-icons": "^8.1.0",
"react-native-video": "^5.2.0",
"react-native-webview": "^11.14.1",
"reanimated-bottom-sheet": "^1.0.0-alpha.22",
"styled-components": "^5.3.3",
"victory-native": "^35.5.5"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/runtime": "^7.15.4",
"@react-native-community/eslint-config": "^3.0.1",
"babel-jest": "^27.3.1",
"eslint": "^8.0.1",
"jest": "^27.3.1",
"metro-react-native-babel-preset": "^0.66.2",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native"
},
"babel": {
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
}
}