generated from Valeriy-Burlaka/react-native-expo-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.76 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-native-taskbox",
"version": "1.0.0",
"scripts": {
"build:ios:dev": "yarn prebuild:ios && eas build --platform ios --profile development --local",
"go": "expo start",
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint . --ext .tsx",
"prebuild:ios": "expo prebuild --clean --platform ios",
"test": "jest",
"update-stories": "sb-rn-get-stories --config-path storybook-ondevice",
"storybook-watcher": "sb-rn-watcher --config-path storybook-ondevice",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emotion/native": "^11.10.0",
"@emotion/react": "^11.10.4",
"@expo/webpack-config": "^0.17.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/datetimepicker": "6.2.0",
"@react-native-community/slider": "4.2.3",
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/native-stack": "^6.9.0",
"expo": "~46.0.19",
"expo-blur": "~11.2.0",
"expo-dev-client": "~1.3.1",
"expo-haptics": "~11.3.0",
"expo-linking": "~3.2.2",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"expo-web-browser": "~11.0.0",
"immer": "^10.0.2",
"polished": "^4.2.2",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.6",
"react-native-context-menu-view": "^1.9.0",
"react-native-gesture-handler": "~2.5.0",
"react-native-hold-menu": "^0.1.5",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-reanimated": "~2.9.1",
"react-native-redash": "^18.1.0",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@storybook/addon-actions": "~6.3",
"@storybook/addon-controls": "~6.3",
"@storybook/addon-essentials": "~6.3",
"@storybook/addon-links": "~6.3",
"@storybook/addon-ondevice-actions": "^6.0.1-beta.7",
"@storybook/addon-ondevice-backgrounds": "^6.0.1-beta.7",
"@storybook/addon-ondevice-controls": "^6.0.1-beta.7",
"@storybook/addon-ondevice-notes": "^6.0.1-beta.7",
"@storybook/addon-react-native-web": "^0.0.18",
"@storybook/addon-storyshots": "~6.3",
"@storybook/react": "~6.3",
"@storybook/react-native": "^6.0.1-beta.7",
"@types/jest": "^29.0.1",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jest-expo": "^46.0.1",
"react-test-renderer": "18.1.0",
"sharp-cli": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^4.6.3",
"webpack-dev-server": "^3"
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"<rootDir>/__mocks__/globalMock.js"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg|@storybook/(react-native|addon-ondevice-controls|addon-ondevice-notes))"
]
},
"resolutions": {
"react-test-renderer": "18.1.0"
},
"private": false
}