-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.71 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
{
"name": "the-munkeler",
"version": "1.1.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"app/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/netinfo": "11.4.1",
"expo": "~54.0.33",
"expo-asset": "~12.0.12",
"expo-audio": "~1.1.1",
"expo-av": "~16.0.8",
"expo-blur": "~15.0.8",
"expo-build-properties": "~1.0.10",
"expo-constants": "~18.0.10",
"expo-dev-client": "~6.0.20",
"expo-haptics": "~15.0.8",
"expo-linking": "~8.0.11",
"expo-localization": "~17.0.8",
"expo-navigation-bar": "~5.0.10",
"expo-router": "~6.0.23",
"expo-status-bar": "~3.0.9",
"expo-system-ui": "~6.0.9",
"i18n-js": "^4.5.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-dotenv": "^3.4.11",
"react-native-google-mobile-ads": "^15.8.1",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.0",
"react-native-worklets": "0.5.1",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/react-native": "^12.4.3",
"babel-preset-expo": "~54.0.9",
"jest": "^29.7.0",
"jest-expo": "~54.0.17"
},
"description": "**The Munkeler** is a fast-paced social deduction game built with **React Native and Expo**, where players try to uncover who among them is the imposter — all on a single shared device.",
"repository": {
"type": "git",
"url": "git+https://github.com/Davidpereira2803/imposter-hunt.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Davidpereira2803/imposter-hunt/issues"
},
"homepage": "https://github.com/Davidpereira2803/imposter-hunt#readme"
}