-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
{
"name": "react-native-legal-bare-example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native legal-generate && react-native run-android --no-packager",
"ios": "react-native legal-generate && react-native run-ios --no-packager",
"lint": "eslint .",
"start": "react-native start --config ./metro.config.js",
"test": "jest",
"typecheck": "tsc --noEmit",
"test:e2e:ios": "maestro test ./e2e/ios-flow.yaml",
"test:e2e:android": "maestro test ./e2e/android-flow.yaml",
"test:e2e": "yarn test:e2e:ios && yarn test:e2e:android"
},
"dependencies": {
"react": "18.3.1",
"react-native": "0.76.7",
"react-native-legal": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "15.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/babel-preset": "0.76.7",
"@react-native/metro-config": "0.76.7",
"@react-native/typescript-config": "0.76.7",
"@rnef/cli": "^0.4.1",
"@rnef/platform-android": "^0.4.1",
"@rnef/platform-ios": "^0.4.1",
"@rnef/plugin-metro": "^0.4.1",
"@types/react": "~18.3.12",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"jest": "^29.6.3",
"react-test-renderer": "18.3.1"
},
"engines": {
"node": ">=18"
}
}