-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "sportsapp",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^8.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"jest-expo": "~20.0.0",
"lint-staged": "^4.1.3",
"react-native-scripts": "1.3.0",
"react-test-renderer": "16.0.0-alpha.12"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js --watch",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"ex-react-native-i18n": "0.0.3",
"expo": "^20.0.0",
"firebase": "^4.3.0",
"mobx": "^3.2.2",
"mobx-persist": "^0.3.4",
"mobx-react": "^4.2.2",
"native-base": "^2.3.1",
"react": "^16.0.0-rc.2",
"react-native": "^0.47.2",
"react-native-fetch-blob": "^0.10.8",
"react-native-i18n": "^2.0.6",
"react-native-image-picker": "^0.26.6",
"react-navigation": "^1.0.0-beta.11"
}
}