-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.38 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
{
"name": "bitcoin-explorer-android",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start:wsl": "REACT_NATIVE_PACKAGER_HOSTNAME=$(node get_network_local_ip.js) expo start --go --clear",
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"prepare": "husky && husky install",
"lint": "eslint --fix --ext .ts,.tsx src/**/*",
"test": "jest -u"
},
"dependencies": {
"@react-native-community/netinfo": "11.3.1",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@tanstack/react-query": "^5.28.4",
"@types/react": "~18.2.79",
"expo": "~51.0.36",
"expo-clipboard": "~6.0.3",
"expo-dev-client": "~4.0.27",
"expo-image": "~1.13.0",
"expo-localization": "~15.0.3",
"expo-splash-screen": "~0.27.6",
"expo-status-bar": "~1.12.1",
"i18n-js": "^4.4.3",
"nanoid": "^5.0.7",
"react": "18.2.0",
"react-native": "0.74.5",
"react-native-element-dropdown": "^2.12.1",
"react-native-get-random-values": "^1.11.0",
"react-native-pager-view": "6.3.0",
"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-uuid": "^2.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-react": "^7.24.7",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@welldone-software/why-did-you-render": "^8.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-expo": "~51.0.4",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react-native-svg-transformer": "^1.1.0"
},
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
}
}