-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.98 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
{
"name": "ReactNativeUnsplashApp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "expo run:android",
"ios": "expo run:ios",
"start": "expo start --dev-client",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"clean": "react-native-clean-project"
},
"dependencies": {
"@manaflair/redux-batch": "^1.0.0",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-masked-view/masked-view": "0.2.8",
"@react-native-seoul/masonry-list": "^1.0.6",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^0.21.1",
"expo": "^48.0.0",
"expo-dev-client": "~2.2.1",
"expo-image": "~1.0.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-updates": "~0.16.4",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.8",
"react-native-actions-sheet": "^0.8.29",
"react-native-config": "^1.4.3",
"react-native-elements": "^3.4.3",
"react-native-flipper": "^0.191.0",
"react-native-gesture-handler": "^2.10.1",
"react-native-htmlview": "^0.16.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": "^3.1.0",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "^3.20.0",
"react-native-skeleton-placeholder": "^5.2.4",
"react-native-status-bar-height": "^2.6.0",
"react-native-super-grid": "^4.1.3",
"react-native-svg": "13.4.0",
"react-native-thumbnail-grid": "^0.3.0",
"react-native-vector-icons": "^8.1.0",
"react-native-web": "~0.18.10",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"unsplash-js": "^7.0.15"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.21.5",
"@babel/plugin-transform-shorthand-properties": "^7.18.6",
"@babel/plugin-transform-template-literals": "^7.18.9",
"@babel/preset-env": "^7.21.5",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.1",
"@types/lodash": "^4.14.172",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.4.1",
"react-native-clean-project": "^3.6.4",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "18.2.0",
"redux-devtools": "^3.7.0",
"redux-flipper": "^2.0.2",
"redux-logger": "^3.0.6",
"typescript": "^4.9.4"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}