-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "react-native-mobx-axios",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-expo": "^5.0.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"jest-expo": "^33.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": "^9.0.0",
"autobind-decorator": "^2.2.0",
"axios": "^0.19.0",
"expo": "^33.0.0",
"expo-asset": "^5.0.1",
"expo-constants": "^5.0.1",
"mobx": "^4.3.0",
"mobx-react": "^5.3.6",
"mobx-utils": "^4.0.1",
"prop-types": "^15.6.2",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"react-native-animatable": "^1.3.0",
"react-native-platform-touchable": "^1.1.1",
"react-navigation": "^3.11.0"
}
}