-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.13 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
{
"name": "news",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=22"
},
"engineStrict": true,
"packageManager": "pnpm@9.15.3",
"scripts": {
"android": "react-native run-android --no-packager",
"ios": "react-native run-ios --no-packager",
"start": "react-native start --port 9004",
"start:standalone": "STANDALONE=1 react-native start --port 8081",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pods": "(cd ios && bundle install && bundle exec pod install)",
"pods:update": "(cd ios && bundle exec pod update)",
"bundle": "pnpm bundle:ios && pnpm bundle:android",
"bundle:ios": "react-native bundle --platform ios --entry-file index.js",
"bundle:android": "react-native bundle --platform android --entry-file index.js"
},
"dependencies": {
"@bottom-tabs/react-navigation": "1.1.0",
"@module-federation/enhanced": "2.3.1",
"@react-navigation/native": "7.2.2",
"@react-navigation/native-stack": "7.14.10",
"react": "19.2.3",
"react-native": "0.84.1",
"react-native-bottom-tabs": "1.1.0",
"react-native-paper": "5.15.0",
"react-native-safe-area-context": "5.7.0",
"react-native-screens": "4.24.0",
"react-native-vector-icons": "10.3.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@callstack/repack": "5.2.5",
"@changesets/cli": "^2.26.1",
"@react-native-community/cli": "20.1.0",
"@react-native-community/cli-platform-android": "20.1.0",
"@react-native-community/cli-platform-ios": "20.1.0",
"@react-native/babel-preset": "0.84.1",
"@react-native/eslint-config": "0.84.1",
"@react-native/typescript-config": "0.84.1",
"@rspack/core": "1.7.11",
"@swc/helpers": "^0.5.20",
"@types/jest": "^29.5.14",
"@types/react": "^19.2.0",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"babel-jest": "^29.2.1",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"react-test-renderer": "^19.2.3",
"typescript": "^5.8.3"
}
}