-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.06 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
89
90
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint . --cache --report-unused-disable-directives",
"lint:ci": "eslint . --report-unused-disable-directives",
"storybook": "start-storybook -p 7007",
"prestorybook": "rnstl"
},
"dependencies": {
"@expo/metro-config": "^0.1.64",
"@react-native-async-storage/async-storage": "^1.14.1",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.11.8",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"color": "^3.1.3",
"expo": "~40.0.1",
"expo-app-loading": "^1.0.1",
"expo-asset": "~8.2.1",
"expo-constants": "~9.3.3",
"expo-font": "~8.4.0",
"expo-linear-gradient": "~8.4.0",
"expo-splash-screen": "~0.8.1",
"expo-status-bar": "~1.0.3",
"lodash": "^4.17.21",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-merge-refs": "^1.1.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.0.tar.gz",
"react-native-auto-height-image": "^3.2.4",
"react-native-gesture-handler": "~1.8.0",
"react-native-reanimated": "~1.13.0",
"react-native-redash": "^16.0.8",
"react-native-responsive-dimensions": "^3.1.1",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.2",
"react-native-svg": "12.1.0",
"react-native-svg-transformer": "^0.14.3",
"react-native-web": "~0.15.0",
"react-native-webview": "11.0.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-knobs": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/addon-ondevice-actions": "^5.3.21",
"@storybook/addon-ondevice-knobs": "^5.3.21",
"@storybook/addons": "^6.0.21",
"@storybook/react-native": "^5.3.21",
"@storybook/react-native-server": "^5.3.21",
"@storybook/theming": "^6.0.21",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.12.0",
"babel-preset-expo": "^8.3.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"faker": "^5.4.0",
"prop-types": "^15.7.2",
"react-is": "^17.0.1",
"react-native-storybook-loader": "^2.0.2"
},
"private": true,
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src/components"
],
"pattern": "**/stories.js",
"outputFile": "./storybook/storyLoader.js"
}
}
}