-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.92 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.92 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
{
"name": "react-native-playground",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"prepare": "husky",
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:types": "tsc --noEmit",
"style": "yarn format && yarn lint && yarn check:types",
"nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android"
},
"dependencies": {
"@expo-google-fonts/poppins": "^0.4.1",
"@expo/log-box": "55.0.8",
"@expo/vector-icons": "^15.0.2",
"@react-native-community/netinfo": "11.5.2",
"@react-native-masked-view/masked-view": "0.3.2",
"@shopify/flash-list": "2.0.2",
"@shopify/react-native-skia": "2.4.18",
"@tanstack/react-query": "^5.95.2",
"@types/lodash": "^4.17.24",
"axios": "^1.14.0",
"d3": "^7.9.0",
"expo": "^55.0.9",
"expo-build-properties": "~55.0.10",
"expo-constants": "~55.0.9",
"expo-font": "~55.0.4",
"expo-linking": "~55.0.9",
"expo-router": "^55.0.8",
"expo-splash-screen": "~55.0.13",
"expo-status-bar": "~55.0.4",
"expo-system-ui": "~55.0.11",
"i18next": "^25.10.10",
"intl-pluralrules": "^2.0.1",
"lodash": "^4.17.23",
"polished": "^4.3.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-edge-to-edge": "^1.8.1",
"react-native-gesture-handler": "~2.30.0",
"react-native-mmkv": "^4.3.0",
"react-native-modalize": "^2.1.1",
"react-native-nitro-modules": "^0.35.2",
"react-native-portalize": "^1.0.7",
"react-native-reanimated": "4.2.1",
"react-native-redash": "^18.1.5",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-vision-camera": "^4.7.3",
"react-native-worklets": "0.7.2",
"sonner-native": "^0.23.1",
"zod": "^4.3.6",
"zod-i18n-map": "^2.27.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9",
"@tanstack/eslint-plugin-query": "^5.95.2",
"@types/d3": "^7.4.3",
"@types/react": "~19.2.10",
"@types/react-dom": "^19",
"babel-plugin-module-resolver": "^5.0.3",
"eslint": "^9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"typescript": "~5.9.2",
"typescript-eslint": "^8.57.2"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"enabled": true,
"listUnknownPackages": false
}
}
},
"private": true
}