-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.86 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
{
"name": "com.repro",
"version": "0.0.1",
"private": true,
"scripts": {
"start:android": "pnpm dlx concurrently@latest --handle-input --raw --kill-others-on-fail -p '[{name}]' -n 'App,Build' -c 'yellow.bold,cyan.bold' 'pnpm start' 'sleep 5 && pnpm android'",
"android": "react-native run-android --active-arch-only --list-devices",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start --reset-cache",
"test": "jest",
"logcat": "adb logcat | grep -iE 'com.repro|FATAL|Exception'",
"logcat-clear": "adb logcat -c",
"clean": "node ./scripts/clean-dependencies.mjs",
"check:updates": "pnpm dlx npm-check-updates@latest --install never"
},
"dependencies": {
"@danielsaraldi/react-native-blur-view": "1.0.0",
"@react-native/new-app-screen": "0.82.1",
"@sbaiahmed1/react-native-blur": "4.1.1",
"eslint-plugin-react-native": "5.0.0",
"react": "19.1.1",
"react-native": "0.82.1",
"react-native-nitro-image": "0.9.0",
"react-native-nitro-modules": "0.31.7",
"react-native-nitro-web-image": "0.9.0",
"react-native-safe-area-context": "5.6.2"
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/runtime": "7.28.4",
"@react-native-community/cli": "20.0.2",
"@react-native-community/cli-platform-android": "20.0.2",
"@react-native-community/cli-platform-ios": "20.0.2",
"@react-native/babel-preset": "0.82.1",
"@react-native/eslint-config": "0.82.1",
"@react-native/metro-config": "0.82.1",
"@react-native/typescript-config": "0.82.1",
"@types/jest": "29.5.13",
"@types/react": "19.1.1",
"@types/react-test-renderer": "19.1.0",
"eslint": "9.39.1",
"jest": "29.6.3",
"prettier": "3.6.2",
"react-test-renderer": "19.1.1",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20"
}
}