This repository was archived by the owner on Aug 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.47 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.47 KB
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
{
"name": "newimageing",
"version": "0.6.1",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"postinstall": "patch-package",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"precommit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-camera-roll/camera-roll": "^5.2.3",
"@react-native-community/netinfo": "9.3.5",
"@react-navigation/material-top-tabs": "^6.5.2",
"@react-navigation/native": "^6.0.11",
"@react-navigation/stack": "^6.3.11",
"@semantic-release/git": "^10.0.1",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"deprecated-react-native-prop-types": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"expo": "~47.0.12",
"expo-application": "~5.0.1",
"expo-av": "^13.0.2",
"expo-barcode-scanner": "~12.1.0",
"expo-clipboard": "~4.0.1",
"expo-device": "~5.0.0",
"expo-document-picker": "~11.0.1",
"expo-file-system": "~15.1.1",
"expo-image-picker": "~14.0.2",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-updates": "~0.15.6",
"expo-video-thumbnails": "^7.0.0",
"patch-package": "^6.5.1",
"prop-types": "^15.8.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-animatable": "^1.3.3",
"react-native-device-info": "^10.3.0",
"react-native-dialog": "https://github.com/jitsi/react-native-dialog/releases/download/v9.2.2-jitsi.1/react-native-dialog-9.2.2.tgz",
"react-native-easy-gestures": "^2.2.4",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "~2.8.0",
"react-native-logs": "^5.0.1",
"react-native-mime-types": "^2.3.0",
"react-native-modal-selector": "castdrian/react-native-modal-selector",
"react-native-pager-view": "6.0.1",
"react-native-paper": "^5.1.3",
"react-native-progress": "^5.0.0",
"react-native-qrcode-svg": "^6.2.0",
"react-native-really-awesome-button": "^1.6.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-select-dropdown": "^3.2.1",
"react-native-share": "^8.1.0",
"react-native-share-menu": "^6.0.0",
"react-native-simple-toast": "^2.0.0",
"react-native-svg": "^13.7.0",
"react-native-tab-view": "^3.3.4",
"react-native-web": "~0.18.9",
"semantic-release-expo": "^2.2.3",
"sp-react-native-in-app-updates": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"babel-plugin-module-resolver": "^5.0.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"semantic-release": "^20.1.0"
},
"private": true
}