-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.79 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
67
68
69
70
{
"name": "embrace-react-native-monorepo",
"private": true,
"description": "Monorepo for packages that power Embrace's React Native SDK.",
"workspaces": [
"packages/*"
],
"packageManager": "yarn@4.3.1",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"publish-modules": "npx lerna version && npx lerna run build && npx lerna publish from-git",
"build": "npx lerna run build",
"lint:js": "eslint . && prettier \"packages/**/*.{js,jsx,ts,tsx,json}\" --check && yarn constraints",
"lint:js:fix": "eslint . --fix && prettier --write \"packages/**/*.{js,jsx,ts,tsx,json}\" && yarn constraints --fix",
"lint:clang": "./scripts/run-clang-format.sh",
"lint:clang:fix": "./scripts/run-clang-format.sh --fix",
"lint:swift": "./scripts/run-swiftlint.sh",
"lint:swift:fix": "./scripts/run-swiftlint.sh --fix",
"test": "jest --maxWorkers=2",
"android:test": "npx lerna run android:test",
"ios:install": "npx lerna run ios:install",
"ios:install:core": "npx lerna run ios:install --scope=@embrace-io/react-native",
"ios:install:tracer-provider": "npx lerna run ios:install --scope=@embrace-io/react-native-tracer-provider",
"ios:install:otlp": "npx lerna run ios:install --scope=@embrace-io/react-native-otlp",
"ios:test": "npx lerna run ios:test --concurrency=1",
"ios:test:core": "npx lerna run ios:test --scope=@embrace-io/react-native",
"ios:test:tracer-provider": "npx lerna run ios:test --scope=@embrace-io/react-native-tracer-provider",
"ios:test:otlp": "npx lerna run ios:test --scope=@embrace-io/react-native-otlp"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@dotenvx/dotenvx": "^2.1.5",
"@eslint/js": "^10.0.0",
"@react-native/babel-preset": "^0.86.0",
"@react-native/jest-preset": "^0.86.0",
"@testing-library/react-native": "^13.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.11",
"@types/react-native": "^0.60.2",
"@types/semver": "^7.1.0",
"@yarnpkg/types": "^4.0.0",
"babel-jest": "^30.0.4",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"jest": "^30.0.4",
"lerna": "^9.0.7",
"prettier": "^3.2.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "^0.86.0",
"react-test-renderer": "^19.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.60.0"
},
"resolutions": {
"@react-native/jest-preset/jest-environment-node": "^30.4.1"
}
}