forked from chris-poe/react-native-redux-axios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "react-native-redux-axios",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-preset-expo": "^5.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"husky": "^0.14.3",
"jest-expo": "^31.0.0",
"lint-staged": "^7.1.2",
"prettier": "^1.13.3",
"react-test-renderer": "16.3.1"
},
"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'",
"precommit": "lint-staged"
},
"jest": {
"preset": "jest-expo"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@expo/vector-icons": "^6.3.1",
"axios": "^0.18.0",
"expo": "^31.0.4",
"prop-types": "^15.6.2",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-31.0.1.tar.gz",
"react-native-animatable": "^1.3.0",
"react-native-platform-touchable": "^1.1.1",
"react-navigation": "^2.18.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-axios-middleware": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
}
}