-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.77 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.77 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
{
"name": "swingessentialsapp",
"version": "5.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --simulator=\"iPhone 16 Pro\"",
"lint": "eslint \"./**/**.{ts,tsx,js,jsx}\"",
"lint:fix": "eslint \"./**/**.{ts,tsx,js,jsx}\" --fix",
"pods": "cd ios && pod install && cd ..",
"prettier": "prettier \"./**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"prettier:check": "prettier \"./**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"start": "react-native start",
"test": "jest"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^2.1.2",
"@react-native-community/datetimepicker": "^7.6.2",
"@react-native-community/hooks": "^100.1.0",
"@react-native-picker/picker": "2.4.0",
"@react-native-vector-icons/common": "^11.0.0",
"@react-native-vector-icons/material-icons": "^0.0.1",
"@react-navigation/core": "^7.0.0",
"@react-navigation/drawer": "^7.0.0",
"@react-navigation/native": "^7.0.0",
"@react-navigation/stack": "^6.3.20",
"@reduxjs/toolkit": "^2.6.1",
"date-fns": "^4.1.0",
"react": "19.0.0",
"react-native": "0.78.2",
"react-native-bootsplash": "^6.3.4",
"react-native-device-info": "^14.0.4",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.25.0",
"react-native-iap": "^12.16.2",
"react-native-image-crop-picker": "^0.42.0",
"react-native-image-picker": "^8.2.0",
"react-native-keychain": "^10.0.0",
"react-native-logs": "^5.3.0",
"react-native-mail": "^6.1.1",
"react-native-modal": "14.0.0-rc.1",
"react-native-modal-datetime-picker": "^17.1.0",
"react-native-paper": "^5.13.1",
"react-native-picker-select": "^9.3.1",
"react-native-reanimated": "^3.17.3",
"react-native-reanimated-carousel": "^4.0.2",
"react-native-safe-area-context": "^5.3.0",
"react-native-screens": "^4.10.0",
"react-native-svg": "^15.11.2",
"react-native-touch-id": "^4.4.1",
"react-native-video": "^6.12.0",
"react-native-vision-camera": "^4.6.4",
"react-native-webview": "^13.13.5",
"react-native-youtube-iframe": "^2.3.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "15.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/babel-preset": "0.78.2",
"@react-native/codegen": "0.78.2",
"@react-native/eslint-config": "0.78.2",
"@react-native/gradle-plugin": "0.78.2",
"@react-native/metro-config": "0.78.2",
"@react-native/typescript-config": "0.78.2",
"@types/jest": "^29.5.13",
"@types/react": "^19.0.0",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-native-video": "^5.0.19",
"@types/react-test-renderer": "^19.0.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-test-renderer": "19.0.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4,
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"bracketSameLine": false
},
"packageManager": "yarn@4.9.1"
}