-
Notifications
You must be signed in to change notification settings - Fork 368
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.53 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.53 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
{
"name": "ViewShotExample",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "rm -rf node_modules/react-native-view-shot/node_modules/{react,react-native}",
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "react-native start",
"test:e2e:ios": "detox test --configuration ios.sim.debug e2e/tests/viewshot-all-screens.test.js",
"test:e2e:android": "detox test --configuration android.emu.debug e2e/tests/viewshot-all-screens.test.js",
"test:e2e:ios:update-snapshots": "UPDATE_SNAPSHOTS=true detox test --configuration ios.sim.debug e2e/tests/viewshot-all-screens.test.js",
"test:e2e:android:update-snapshots": "UPDATE_SNAPSHOTS=true detox test --configuration android.emu.debug e2e/tests/viewshot-all-screens.test.js",
"build:e2e:ios": "detox build --configuration ios.sim.debug",
"build:e2e:android": "detox build --configuration android.emu.debug"
},
"dependencies": {
"@react-native/new-app-screen": "0.84.1",
"@react-navigation/native": "^7.1.33",
"@react-navigation/native-stack": "^7.14.4",
"@react-navigation/stack": "^7.8.4",
"buffer": "^6.0.3",
"react": "19.2.3",
"react-native": "0.84.1",
"react-native-gesture-handler": "^2.30.0",
"react-native-safe-area-context": "^5.7.0",
"react-native-screens": "^4.24.0",
"react-native-svg": "^15.15.3",
"react-native-video": "^6.19.0",
"react-native-view-shot": "file:..",
"react-native-webview": "^13.16.1"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/runtime": "^7.25.0",
"@jest/reporters": "^30.2.0",
"@react-native-community/cli": "20.1.2",
"@react-native-community/cli-platform-android": "20.1.2",
"@react-native-community/cli-platform-ios": "20.1.2",
"@react-native/babel-preset": "0.84.1",
"@react-native/eslint-config": "0.84.1",
"@react-native/metro-config": "0.84.1",
"@react-native/typescript-config": "0.84.1",
"@types/jest": "^29.5.13",
"@types/react": "^19.1.1",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^30.2.0",
"detox": "^20.43.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"jest-junit": "^16.0.0",
"prettier": "2.8.8",
"react-test-renderer": "19.2.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}