-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "mobile-whep",
"workspaces": [
"packages/android-client",
"packages/ios-client",
"packages/react-native-client",
"examples/react-native/WhipWhepDemo"
],
"packageManager": "[email protected]",
"devDependencies": {
"@babel/runtime": "^7.26.0",
"@react-native/eslint-config": "^0.76.5",
"eslint": "8.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript-eslint": "^8.19.1"
},
"scripts": {
"lint": "yarn workspaces foreach -A -p run lint",
"lint:check": "yarn workspaces foreach -A -p run lint:check",
"build": "yarn workspace react-native-whip-whep run expo-module build",
"prepare:package": "yarn workspace react-native-whip-whep run expo-module prepare",
"prepare:example": "yarn && cd examples/react-native/WhipWhepDemo && npx expo prebuild",
"tsc": "yarn workspaces foreach -A -p run tsc"
},
"dependencies": {
"babel-plugin-module-resolver": "^5.0.2"
}
}