-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react-native-zohosalesiq",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest",
"example:android": "yarn workspace mobilistensampleapp react-native run-android",
"example:ios": "yarn workspace mobilistensampleapp react-native run-ios",
"example:start": "yarn workspace mobilistensampleapp react-native start",
"clean": "yarn workspaces foreach -Avp exec rm -rf node_modules lib dist build '*.tsbuildinfo'",
"build": "yarn workspaces foreach -Avp exec sh -c 'rm -f ./*.tsbuildinfo' && yarn tsc -b",
"pack:all": "yarn build && mkdir -p packs && yarn workspaces foreach -At exec sh -c 'yarn pack --filename ../../packs/$(node -p \"require(\\\"./package.json\\\").name\").tgz'",
"publish:all": "yarn workspaces foreach -A --no-private npm publish --access public",
"release": "yarn clean && yarn install && yarn pack:all && yarn publish:all"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/runtime": "^7.28.2",
"@commitlint/config-conventional": "^19.8.1",
"@react-native/babel-preset": "0.80.2",
"@react-native/eslint-config": "^0.80.2",
"@react-native/metro-config": "0.80.2",
"@react-native/typescript-config": "0.80.2",
"@release-it/conventional-changelog": "^10.0.1",
"@types/react": "^19.1.9",
"@types/react-test-renderer": "^19.1.0",
"commitlint": "^19.8.1",
"del-cli": "^6.0.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"expo": "^53.0.20",
"expo-module-scripts": "^4.1.9",
"lerna": "^9.0.0",
"prettier": "^3.6.2",
"react": "19.1.1",
"react-native": "^0.74.2",
"react-native-builder-bob": "^0.40.13",
"react-test-renderer": "19.1.1",
"turbo": "^2.5.5",
"typescript": "^5.9.2"
},
"resolutions": {
"@types/react": "^19.1.9"
},
"peerDependencies": {
"expo": ">=47.0.0",
"react-native": ">=0.41.2"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/packages/*/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"packages/*lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"engines": {
"node": ">=18"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"packageManager": "yarn@4.9.2"
}