forked from akshay9/librephotos-mobile
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
124 lines (124 loc) · 4.02 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "librephotosmobile",
"version": "1.1.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint --fix .",
"type-check": "tsc --build plugins/typescript/template/tsconfig.json",
"postversion": "react-native-version",
"doc": "typedoc --entryPointStrategy expand ./src --skipErrorChecking"
},
"dependencies": {
"@dudigital/react-native-zoomable-view": "^1.1.4",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-camera-roll/camera-roll": "^6.0.0",
"@react-native-community/cli-platform-android": "12.3.7",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/progress-view": "^1.4.0-beta.0",
"@react-native-cookies/cookies": "^6.2.1",
"@react-navigation/bottom-tabs": "^6.5.6",
"@react-navigation/native": "^6.1.5",
"@react-navigation/stack": "^6.3.15",
"@reduxjs/toolkit": "^1.9.3",
"@shopify/flash-list": "^1.4.1",
"@thecodingmachine/redux-toolkit-wrapper": "2.0.1",
"axios": "^1.3.4",
"crypto-js": "4.2.0",
"history": "^5.3.0",
"i18next": "^23.0.0",
"jwt-decode": "^3.1.2",
"moment": "^2.29.4",
"native-base": "^3.4.25",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-i18next": "^13.0.0",
"react-native": "^0.72.0",
"react-native-blob-util": "0.19.9",
"react-native-device-info": "^10.4.0",
"react-native-file-access": "^3.0.0",
"react-native-file-logger": "^0.4.1",
"react-native-flipper": "^0.212.0",
"react-native-gesture-handler": "^2.9.0",
"react-native-pager-view": "^6.1.4",
"react-native-reanimated": "^3.5.4",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.20.0",
"react-native-shake": "^5.1.1",
"react-native-svg": "^13.8.0",
"react-native-vector-icons": "^10.0.0",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"redux-first-history": "^5.1.1",
"redux-flipper": "^2.0.2",
"redux-persist": "^6.0.0",
"redux-persist-transform-filter": "^0.0.22",
"redux-thunk": "^2.4.2",
"styled-components": "^5.3.6",
"styled-system": "^5.1.5",
"zod": "^3.20.6"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/runtime": "^7.21.0",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@react-native/eslint-config": "^0.74.85",
"@react-native/eslint-plugin": "^0.74.85",
"@react-native/metro-config": "^0.74.85",
"@tsconfig/react-native": "^3.0.0",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.4.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.28",
"@types/react-native-vector-icons": "^6.4.13",
"@types/react-redux": "^7.1.25",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"babel-jest": "^29.4.3",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^9.7.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"metro": "^0.80.9",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.0.0",
"react-native-version": "^4.0.0",
"react-test-renderer": "18.3.1",
"reactotron-react-native": "5.0.3",
"typedoc": "^0.25.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "identity-obj-proxy"
},
"setupFiles": [
"./jest.setup.js"
],
"timers": "fake",
"testEnvironment": "jsdom",
"transformIgnorePatterns": [
"/node_modules/(?!@react-native|react-native)"
]
}
}