-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.33 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
{
"name": "myfirstapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"debug": "open -g rndebugger://set-debugger-loc?host=localhost&port=8081 && ENVFILE=.env.develop react-native run-ios"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.8",
"@react-native-community/cli": "^6.1.0",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/netinfo": "^6.0.1",
"@react-navigation/bottom-tabs": "^5.11.11",
"@react-navigation/native": "^5.9.8",
"@react-navigation/stack": "^5.14.5",
"@reduxjs/toolkit": "^1.6.1",
"axios": "^0.21.4",
"formik": "^2.2.9",
"metro-config": "^0.66.2",
"qs": "^6.10.1",
"react": "17.0.1",
"react-native": "0.64.1",
"react-native-config": "^1.4.4",
"react-native-gesture-handler": "^1.10.3",
"react-native-paper": "^4.9.2",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.4.0",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^0.14.3",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/color": "^3.0.2",
"@types/invariant": "^2.2.35",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.13",
"@types/react-native": "^0.64.10",
"@types/react-redux": "^7.1.18",
"@types/react-test-renderer": "^17.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.2.1",
"react-test-renderer": "17.0.1",
"remote-redux-devtools": "^0.5.16",
"typescript": "^4.3.5"
},
"jest": {
"preset": "react-native"
}
}