-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.05 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
{
"name": "RecipeApp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android && yarn run server",
"ios": "react-native run-ios && yarn run server",
"ios7": "react-native run-ios --simulator=\"iPhone 7\"",
"start": "react-native start --reset-cache",
"server": "json-server --watch fake-db.json",
"test": "jest",
"lint": "eslint .",
"svgr": "svgr ./src/icons -d ./src/components/icons --native --icon --svg-props width=23,height=23,className="
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.10",
"@react-navigation/bottom-tabs": "^5.11.7",
"@react-navigation/material-top-tabs": "^5.3.14",
"@react-navigation/native": "^5.9.2",
"@react-navigation/stack": "^5.14.2",
"global": "^4.4.0",
"json-server": "^0.16.3",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-native": "0.64.1",
"react-native-animatable": "^1.3.3",
"react-native-gesture-handler": "^1.10.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-modal": "^11.10.0",
"react-native-modalize": "^2.0.8",
"react-native-reanimated": "^1.13.2",
"react-native-redash": "^16.0.11",
"react-native-safe-area-context": "^3.1.9",
"react-native-safe-area-view": "^1.1.1",
"react-native-screens": "^2.17.1",
"react-native-svg": "^12.1.0",
"react-native-swipe-gestures": "^1.0.5",
"react-native-tab-view": "^2.15.2",
"react-native-vector-icons": "^8.0.0",
"react-native-video": "^5.1.1",
"styled-components": "^5.2.1",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/runtime": "^7.14.0",
"@react-native-community/eslint-config": "^2.0.0",
"@svgr/cli": "^5.5.0",
"babel-jest": "^26.6.3",
"eslint": "^7.27.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.0",
"react-test-renderer": "17.0.1"
},
"jest": {
"preset": "react-native"
},
"resolutions": {
"styled-components": "^5"
}
}