-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.37 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.37 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
{
"name": "discourse-mobile",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --list-devices",
"start": "react-native start",
"clean": "react-native clean-project-auto",
"pod": "pod install --project-directory=ios",
"prettier": "prettier --check \"js/**/*.{js,json}\"",
"prettier:fix": "prettier --write \"js/**/*.{js,json}\"",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"e2e-build": "detox build --configuration ios.sim.debug",
"test": "detox test --configuration ios.sim.debug",
"test-ipad": "detox test --configuration ios.sim.debug -n 'iPad (10th generation)'"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.21.0",
"@react-native-community/blur": "^4.4.0",
"@react-native-community/push-notification-ios": "^1.11.0",
"@react-native-community/segmented-control": "^2.2.0",
"@react-native-firebase/app": "^23.2.1",
"@react-native-firebase/messaging": "^23.2.1",
"@react-native-vector-icons/fontawesome5": "^12.2.0",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/native": "^6.0.8",
"@react-navigation/stack": "^6.2.0",
"@shopify/flash-list": "^1.7.2",
"chroma-js": "^3.1.2",
"html-entities": "^2.5.2",
"i18n-js": "^3.8.0",
"immutable": "^4.1.0",
"invariant": "^2.2",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "19.1.0",
"react-native": "^0.80.2",
"react-native-background-fetch": "^4.2.3",
"react-native-custom-tabs": "https://github.com/adminphoeniixx/react-native-custom-tabs",
"react-native-device-info": "^13.1.0",
"react-native-draggable-flatlist": "^4.0.3",
"react-native-gesture-handler": "^2.15.0",
"react-native-immutable-list-view": "^2.0.0",
"react-native-key-pair": "git+https://github.com/samsaffron/react-native-key-pair",
"react-native-localize": "^2.2.3",
"react-native-popover-view": "^5.1.9",
"react-native-progress": "^5.0.1",
"react-native-reanimated": "^4.1.0",
"react-native-safari-view": "git+https://github.com/samsaffron/react-native-safari-view.git",
"react-native-safari-web-auth": "2.0.0",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": "^4.15.4",
"react-native-siri-shortcut": "^3.2.4",
"react-native-svg": "^15.1.0",
"react-native-toast-message": "^2.1.7",
"react-native-webview": "^13.12.3",
"react-native-worklets": "^0.5.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "19.1.1",
"@react-native-community/cli-platform-android": "19.1.1",
"@react-native-community/cli-platform-ios": "19.1.1",
"@react-native/babel-preset": "0.80.2",
"@react-native/eslint-config": "0.80.2",
"@react-native/metro-config": "0.80.2",
"@react-native/typescript-config": "0.80.2",
"@types/jest": "^29.5.13",
"@types/react": "^19.1.0",
"@types/react-test-renderer": "^19.1.0",
"detox": "^20.41.1",
"eslint": "^9.34.0",
"eslint-plugin-ft-flow": "^3.0.11",
"hermes-eslint": "^0.32.0",
"jest": "^29.6.3",
"jetifier": "^2.0.0",
"prettier": "2.8.8",
"react-test-renderer": "19.1.0",
"typescript": "5.0.4"
},
"packageManager": "yarn@4.9.4",
"engines": {
"node": ">=18"
}
}