-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.36 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
{
"name": "react-native-launchpad",
"version": "0.7.0",
"license": "MIT",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test:unit": "jest --testPathPattern=__tests__",
"test:e2e:build:ios": "detox build --configuration ios.sim.debug",
"test:e2e:build:android": "detox build --configuration android.emu.debug",
"test:e2e:run:ios": "detox test --configuration ios.sim.debug",
"test:e2e:run:android": "detox test --configuration android.emu.debug",
"ios:pods": "cd ios && bundle exec pod install && cd .."
},
"dependencies": {
"@react-navigation/bottom-tabs": "^7.8.12",
"@react-navigation/elements": "^2.9.2",
"@react-navigation/native": "^7.1.25",
"@react-navigation/native-stack": "^7.8.6",
"launchpad-dependency-injection": "1.1.0",
"mobx": "^6.15.0",
"mobx-react-lite": "^4.1.1",
"native-modules": "link:./native-modules",
"native-views": "link:./native-views",
"react": "19.2.0",
"react-native": "0.83.0",
"react-native-nitro-modules": "0.31.10",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.18.0",
"reflect-metadata": "^0.2.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-transform-class-static-block": "^7.28.3",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.83.0",
"@react-native/eslint-config": "0.83.0",
"@react-native/metro-config": "0.83.0",
"@react-native/typescript-config": "0.83.0",
"@types/jest": "^29.5.13",
"@types/react": "^19.2.0",
"@types/react-test-renderer": "^19.1.0",
"babel-plugin-react-compiler": "^1.0.0",
"babel-plugin-transform-typescript-metadata": "^0.4.0",
"detox": "^20.46.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"jest-mock-extended": "^4.0.0",
"prettier": "2.8.8",
"react-dom": "^19.2.3",
"react-test-renderer": "19.2.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}