This repository was archived by the owner on Feb 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.19 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.19 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
{
"name": "example-host",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "rnef run:android",
"ios": "rnef run:ios",
"android:release": "rnef run:android --variant 'Release'",
"ios:release": "rnef run:ios --configuration 'Release' --destination=\"simulator\"",
"lint": "eslint .",
"dev": "nodemon --config ../../nodemon.json --exec NODE_OPTIONS='--conditions=dev' pnpm start",
"start": "rnef start --reset-cache --client-logs",
"pods": "(cd ios && bundle install && (bundle exec pod install || bundle exec pod update))",
"test": "jest",
"adbreverse": "pnpm --filter example-mini --filter example-nested-mini run adbreverse",
"e2e:prepare:ios": "pnpm --filter example-mini --filter example-nested-mini run build:ios",
"e2e:prepare:android": "pnpm --filter example-mini --filter example-nested-mini run build:android",
"e2e:serve:ios": "pnpm --filter example-mini --filter example-nested-mini run serve:ios",
"e2e:serve:android": "pnpm --filter example-mini --filter example-nested-mini run serve:android",
"e2e:run:ios": "maestro --platform=ios test e2e",
"e2e:run:android": "maestro --platform=android test e2e"
},
"dependencies": {
"lodash": "4.16.6",
"react": "19.1.0",
"react-native": "0.80.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@module-federation/metro": "workspace:*",
"@module-federation/metro-plugin-rnef": "workspace:*",
"@module-federation/runtime": "^0.15.0",
"@react-native/babel-preset": "0.80.0",
"@react-native/eslint-config": "0.80.0",
"@react-native/metro-config": "0.80.0",
"@react-native/typescript-config": "0.80.0",
"@rnef/cli": "^0.7.25",
"@rnef/platform-android": "^0.7.25",
"@rnef/platform-ios": "^0.7.25",
"@rnef/plugin-metro": "^0.7.25",
"@types/jest": "^29.5.13",
"@types/lodash": "^4",
"@types/react": "^19.1.0",
"@types/react-test-renderer": "^19.1.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"nodemon": "^3.1.9",
"prettier": "2.8.8",
"react-test-renderer": "19.1.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}