forked from flatlogic/react-native-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.13 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
{
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"test": "node ./node_modules/jest/bin/jest.js",
"test-update": "node ./node_modules/jest/bin/jest.js --updateSnapshot",
"lint": "./node_modules/eslint/bin/eslint.js src",
"lint-fix": "./node_modules/eslint/bin/eslint.js src --fix",
"flow": "./node_modules/.bin/flow src"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation|lottie-react-native)/"
],
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
},
"dependencies": {
"@ercpereda/react-native-accordion": "^2.0.6",
"@expo/samples": "2.1.1",
"add": "^2.0.6",
"expo": "^28.0.0",
"lodash": "^4.17.5",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"react": "16.3.1",
"react-mixin": "4",
"react-native": "https://github.com/expo/react-native/archive/sdk-28.0.0.tar.gz",
"react-native-calendars": "^1.17.4",
"react-native-gifted-chat": "^0.4.3",
"react-native-image-progress": "^1.0.1",
"react-native-lightbox": "^0.7.0",
"react-native-modal": "^5.0.0",
"react-native-modal-datetime-picker": "^4.13.0",
"react-native-modal-dropdown": "^0.6.2",
"react-native-nav": "^2.0.2",
"react-native-snap-carousel": "^3.6.0",
"react-navigation": "1.0.0-beta.27",
"react-redux": "^5.0.6",
"reactotron-react-native": "^1.14.0",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "4.8.3",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"victory-native": "0.18.2",
"yarn": "^1.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"flow-bin": "^0.61.0",
"jest": "^21.2.1",
"jest-expo": "^25.1.0",
"plop": "^2.0.0",
"react-test-renderer": "^16.2.0"
}
}