forked from iZaL/real-estate-app-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "property",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"flow": "flow",
"prettier": "prettier --write --no-bracket-spacing --single-quote --jsx-bracket-same-line --trailing-comma all --print-width 80 'src/**/*.js'"
},
"dependencies": {
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"qs": "^6.4.0",
"react": "16.0.0-alpha.6",
"react-native": "0.44.2",
"react-native-code-push": "^2.1.0-beta",
"react-native-google-places-autocomplete": "^1.2.11",
"react-native-image-crop-picker": "^0.12.10",
"react-native-maps": "^0.15.2",
"react-native-swipe-list-view": "^0.4.1",
"react-native-swiper": "^1.5.4",
"react-native-tab-view": "0.0.58",
"react-native-vector-icons": "^4.0.1",
"react-native-video": "^1.0.0",
"react-native-youtube": "inProgress-team/react-native-youtube",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-orm": "^0.9.0-rc.3",
"redux-persist": "^4.6.0",
"redux-saga": "^0.14.6",
"reselect": "^3.0.0"
},
"devDependencies": {
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.44.0",
"jest": "19.0.2",
"jest-react-native": "18.0.0",
"prettier": "^1.1.0",
"react-test-renderer": "^15.5.4"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation)"
]
}
}