-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
88 lines (88 loc) · 2.95 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "magento_react_native",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"prestorybook": "rnstl",
"storybook": "(adb reverse tcp:7007 tcp:7007 || true) && start-storybook",
"lint": "eslint --ignore-path .eslintignore --ext .js,.jsx .",
"prettier": "prettier --ignore-path .gitignore \"src/**/*.+(js|json)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.13.4",
"@react-native-community/datetimepicker": "^3.0.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.6",
"@react-navigation/bottom-tabs": "^5.8.0",
"@react-navigation/drawer": "^5.5.1",
"@react-navigation/native": "^5.1.7",
"@react-navigation/stack": "^5.2.14",
"axios": "^0.18.0",
"i18n-js": "^3.3.0",
"prop-types": "^15.7.2",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-appearance": "^0.3.4",
"react-native-flash-message": "^0.1.22",
"react-native-gesture-handler": "^1.6.1",
"react-native-image-gallery": "^2.1.5",
"react-native-localize": "^1.3.1",
"react-native-modal-selector": "^2.0.1",
"react-native-reanimated": "^1.8.0",
"react-native-render-html": "^4.2.3",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.7.0",
"react-native-share": "^4.0.1",
"react-native-svg": "12.1.0",
"react-native-swiper": "^1.6.0",
"react-native-vector-icons": "^7.0.0",
"react-native-webview": "^10.9.0",
"react-navigation-header-buttons": "^2.2.0",
"react-redux": "7.1.0-alpha.4",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/runtime": "^7.10.2",
"@react-native-community/eslint-config": "^1.1.0",
"@storybook/addon-actions": "^5.2.1",
"@storybook/react-native": "^5.2.1",
"@storybook/react-native-server": "^5.2.1",
"babel-eslint": "^10.0.1",
"babel-jest": "24.3.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "24.3.1",
"metro-react-native-babel-preset": "0.58.0",
"prettier": "^2.0.5",
"react-native-storybook-loader": "^1.8.0",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.11.0"
},
"jest": {
"preset": "react-native"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src"
],
"pattern": "**/*.stories.js"
}
}
}