-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.6 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.6 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-chat",
"version": "1.0.0",
"main": "./src/App.js",
"private": false,
"license": "MIT",
"author": "Cemil Tan",
"description": "A React Native chat application using Expo, Firebase, and various libraries for enhanced functionality.",
"repository": {
"type": "git",
"url": "https://github.com/Ctere1/react-native-chat.git"
},
"keywords": [
"react-native",
"expo",
"chat",
"firebase",
"mobile"
],
"scripts": {
"start": "expo start",
"android": "expo run:android",
"build:android:eas:preview": "eas build -p android --profile preview",
"build:android:eas:production": "eas build -p android --profile production",
"build:android:local": "node -e \"const { spawnSync } = require('node:child_process'); const isWin = process.platform === 'win32'; const command = isWin ? 'gradlew.bat' : './gradlew'; const result = spawnSync(command, ['assembleRelease'], { cwd: 'android', stdio: 'inherit', shell: isWin }); process.exit(result.status ?? 1);\"",
"build:android:local:clean": "node -e \"const { spawnSync } = require('node:child_process'); const isWin = process.platform === 'win32'; const command = isWin ? 'gradlew.bat' : './gradlew'; const result = spawnSync(command, ['clean', 'assembleRelease'], { cwd: 'android', stdio: 'inherit', shell: isWin }); process.exit(result.status ?? 1);\"",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --runInBand",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write ."
},
"dependencies": {
"@expo/metro-runtime": "~6.1.2",
"@expo/vector-icons": "^15.1.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.3.29",
"babel-plugin-module-resolver": "^5.0.3",
"dotenv": "^16.4.7",
"expo": "^54.0.0",
"expo-constants": "~18.0.13",
"expo-font": "~14.0.11",
"expo-image-picker": "~17.0.10",
"expo-notifications": "~0.32.16",
"expo-status-bar": "~3.0.9",
"expo-video": "~3.0.16",
"firebase": "^12.11.0",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-emoji-modal": "^0.2.4",
"react-native-gesture-handler": "~2.28.0",
"react-native-get-random-values": "~1.11.0",
"react-native-gifted-chat": "2.6.5",
"react-native-popup-menu": "^0.18.0",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-uuid": "^2.0.3",
"react-native-web": "^0.21.0",
"react-native-worklets": "0.5.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@eslint/js": "^9.32.0",
"@testing-library/react-native": "^13.3.3",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^2.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"globals": "^15.14.0",
"jest-expo": "~54.0.0",
"prettier": "^3.8.1",
"react-test-renderer": "19.1.0"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
}
}