-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.28 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": "react-native-redux-axios",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-preset-expo": "^8.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^4.0.10",
"jest-expo": "^36.0.1",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react-test-renderer": "16.12.0"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start -c",
"eject": "expo eject",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "jest",
"clean": "rm -rf node_modules/ && npm install",
"clean:watchman": "watchman watch-del-all && watchman shutdown-server",
"lint": "eslint 'src/'; exit 0",
"lint:fix": "eslint --fix 'src/'; exit 0",
"format": "prettier --write 'src/**/*.js'"
},
"jest": {
"preset": "jest-expo"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@expo/vector-icons": "^10.0.6",
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/bottom-tabs": "^5.0.0-alpha.34",
"@react-navigation/native": "^5.0.0-alpha.27",
"@react-navigation/stack": "^5.0.0-alpha.58",
"axios": "^0.19.1",
"expo": "^36.0.2",
"expo-asset": "~8.0.0",
"expo-camera": "~8.0.0",
"expo-constants": "~8.0.0",
"expo-permissions": "~8.0.0",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz",
"react-native-animatable": "^1.3.3",
"react-native-gesture-handler": "~1.5.0",
"react-native-platform-touchable": "^1.1.1",
"react-native-reanimated": "~1.4.0",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-axios-middleware": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
}
}