-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.42 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.42 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
{
"name": "coderoutine",
"version": "1.2.0",
"main": "index.ts",
"type": "module",
"author": "Edoardo Dusi",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint",
"type-check": "tsc --noEmit",
"postinstall": "patch-package"
},
"dependencies": {
"@expo/metro-runtime": "~6.1.2",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-firebase/app": "^23.5.0",
"@react-native-firebase/crashlytics": "^23.5.0",
"@react-native-firebase/firestore": "^23.5.0",
"@react-navigation/bottom-tabs": "^7.8.4",
"@react-navigation/native": "^7.1.19",
"@react-navigation/stack": "^7.6.3",
"expo": "54.0.23",
"expo-application": "~7.0.7",
"expo-clipboard": "~8.0.7",
"expo-constants": "~18.0.10",
"expo-dev-client": "~6.0.17",
"expo-device": "~8.0.9",
"expo-iap": "^3.1.27",
"expo-notifications": "~0.32.12",
"expo-status-bar": "~3.0.8",
"expo-updates": "~29.0.12",
"firebase": "^12.5.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-purchases": "^9.6.4",
"react-native-purchases-ui": "^9.6.4",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "~4.16.0",
"react-native-track-player": "^4.1.2",
"react-native-web": "^0.21.2",
"react-native-webview": "13.15.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@types/react": "~19.1.13",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-native": "^5.0.0",
"firebase-admin": "^13.6.0",
"node-html-parser": "^7.0.1",
"patch-package": "^8.0.1",
"postinstall-postinstall": "^2.1.0",
"readline-sync": "^1.4.10",
"typescript": "~5.9.3",
"vitest": "^4.0.8"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"react-native-track-player"
]
}
}
},
"private": true
}