forked from dimaportenko/magento-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
70
71
{
"name": "magento_mobile_app",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"prestorybook": "rnstl",
"storybook": "(adb reverse tcp:7007 tcp:7007 || true) && start-storybook"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.2",
"bugsnag-react-native": "^2.23.2",
"i18n-js": "^3.3.0",
"lodash": "^4.17.15",
"metro-react-native-babel-preset": "0.51.0",
"moment": "^2.24.0",
"prop-types": "^15.6.0",
"react": "16.9.0",
"react-native": "0.61.2",
"react-native-elements": "^1.2.6",
"react-native-fast-image": "^7.0.2",
"react-native-gesture-handler": "^1.4.1",
"react-native-icon-badge": "^1.1.3",
"react-native-localize": "^1.3.1",
"react-native-modal-selector": "^1.1.1",
"react-native-reanimated": "^1.3.0",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-simple-radio-button": "^2.7.4",
"react-native-swiper": "^1.6.0-rc.3",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-navigation-drawer": "^2.2.2",
"react-navigation-header-buttons": "^3.0.3",
"react-navigation-stack": "^1.9.4",
"react-navigation-tabs": "^2.5.6",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-persist-transform-filter": "^0.0.20",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@react-native-community/eslint-config": "^0.0.5",
"@storybook/react-native": "^5.2.4",
"babel-eslint": "^10.0.2",
"babel-jest": "20.0.3",
"babel-preset-react-native": "5.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-rallycoding": "^3.2.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"jest": "20.0.4",
"react-native-storybook-loader": "^1.8.1",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src"
],
"pattern": "**/*.stories.js"
}
}
}