-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.16 KB
/
package.json
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
{
"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": ">=18.0.0"
},
"scripts": {
"publish-modules": "npx lerna version && npx lerna run build && npx lerna publish from-git",
"build": "npx lerna run build",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx && prettier \"packages/**/*.{js,jsx,ts,tsx,json}\" && yarn constraints",
"lint:js:fix": "eslint . --ext .js,.jsx,.ts,.tsx --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",
"android:test": "npx lerna run android:test",
"ios:install": "npx lerna run ios:install",
"ios:test": "npx lerna run ios:test --concurrency=1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@react-native-community/eslint-config": "^3.2.0",
"@types/gzip-js": "^0.3.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@types/react-native": "^0.60.2",
"@types/semver": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^8.8.1",
"@yarnpkg/types": "^4.0.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"lerna": "^8.1.5",
"lint-staged": "^15.2.10",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^19.0.0",
"react-native": "^0.75.4",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}