-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.84 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
90
91
92
93
94
95
96
97
{
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"pretty": "prettier --write \"src/**/*.js\"",
"test": "jest"
},
"dependencies": {
"@expo/react-native-action-sheet": "^3.6.0",
"@react-native-community/masked-view": "0.1.6",
"@react-navigation/native": "^5.0.9",
"@react-navigation/stack": "^5.1.1",
"axios": "^0.19.2",
"color": "^3.1.2",
"expo": "^37.0.0",
"expo-blur": "~8.1.0",
"expo-haptics": "~8.1.0",
"expo-image-picker": "~8.1.0",
"expo-linear-gradient": "~8.1.0",
"expo-permissions": "~8.1.0",
"hex-to-rgba": "^2.0.1",
"lottie-react-native": "~2.6.1",
"matter-attractors": "^0.1.6",
"matter-js": "^0.14.2",
"react": "16.9.0",
"react-addons-update": "^15.6.2",
"react-dom": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
"react-native-auto-height-image": "^3.0.0",
"react-native-circle-checkbox": "^0.1.6",
"react-native-game-engine": "^0.12.3",
"react-native-gesture-handler": "~1.6.0",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-looped-carousel": "^0.1.13",
"react-native-masonry-scrollview": "^0.0.2",
"react-native-modal": "^11.5.4",
"react-native-qrcode-svg": "^6.0.3",
"react-native-reanimated": "~1.7.0",
"react-native-responsive-dimensions": "^3.0.0",
"react-native-safe-area-context": "0.7.3",
"react-native-screens": "~2.2.0",
"react-native-snap-slider": "^0.3.0",
"react-native-svg": "11.0.1",
"react-native-swipe-gestures": "^1.0.5",
"react-native-web": "^0.11.7",
"react-native-webview": "8.1.1",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-axios-middleware": "^4.0.1",
"redux-thunk": "^2.3.0",
"rn-placeholder": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/runtime": "^7.6.3",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"enzyme": "^3.10.0",
"eslint": "^6.5.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-expo": "^37.0.0",
"jest-serializer-enzyme": "^1.0.0",
"lint-staged": "^10.0.3",
"metro-react-native-babel-preset": "^0.56.3",
"prettier": "^1.19.1",
"react-addons-test-utils": "^15.6.2",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.8.3",
"reactotron-react-native": "^4.0.3"
},
"engines": {
"node": ">=10.15.3",
"yarn": ">=1.19.1"
},
"jest": {
"preset": "jest-expo"
},
"lint-staged": {
"src/**/*.{js,css}": [
"prettier --write",
"git add"
],
"package.json": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
}
}