-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.78 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.78 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
{
"name": "wallet",
"main": "expo-router/entry",
"version": "0.5.1",
"scripts": {
"start": "expo start --port 15353",
"dev": "expo start --dev-client -c --port 15353",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --watchAll",
"lint": "eslint ./**/**/*.{js,ts,jsx,tsx} --fix",
"prettier:fix": "prettier --write ./**/**/*.{js,ts,jsx,tsx}",
"prepare": "husky"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/native": "^6.0.2",
"@tamagui/config": "^1.101.4",
"@tamagui/portal": "1.101.4",
"card-validator": "^10.0.0",
"credit-card-type": "^10.0.1",
"crypto-es": "^2.1.0",
"expo": "~51.0.22",
"expo-asset": "~10.0.10",
"expo-clipboard": "~6.0.3",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.20",
"expo-font": "~12.0.7",
"expo-image": "~1.12.13",
"expo-linking": "~6.3.1",
"expo-local-authentication": "~14.0.1",
"expo-router": "~3.5.18",
"expo-secure-store": "~13.0.2",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"expo-web-browser": "~13.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-mask-input": "^1.2.3",
"react-native-pager-view": "6.3.0",
"react-native-payment-icons": "^1.0.11",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-tab-view": "^3.5.2",
"react-native-toast-message": "^2.2.0",
"react-native-web": "~0.19.10",
"tamagui": "^1.101.4",
"zustand": "^4.5.4",
"expo-screen-capture": "~6.0.1",
"expo-application": "~5.9.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.45",
"@types/react-test-renderer": "^18.0.7",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.1",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-unused-imports": "^3.1.0",
"expo-doctor": "^1.6.1",
"husky": "^9.0.11",
"jest": "^29.2.1",
"jest-expo": "~51.0.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint",
"npm run prettier:fix"
]
},
"private": true
}