This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
124 lines (124 loc) · 3.5 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
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
{
"name": "@jellyfish-dev/react-native-membrane-webrtc",
"version": "7.5.0",
"description": "A React Native client for Membrane WebRTC server.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"release": "release-it",
"releaseAppAndroid": "cd example/android && fastlane deploy",
"releaseAppIos": "cd example/ios && fastlane deploy",
"docs": "sed 's/\\.github\\/images/media/g' README.md > README_docs.md && typedoc src/index.tsx --media ./.github/images --readme README_docs.md && rm README_docs.md",
"typecheck": "yarn tsc --noEmit && cd example && yarn tsc --noEmit"
},
"keywords": [
"react-native",
"expo",
"@jellyfish-dev/react-native-membrane-webrtc",
"MembraneWebRTC"
],
"repository": "https://github.com/membraneframework/react-native-membrane-webrtc",
"author": "Angelika Serwa <[email protected]> (https://github.com/graszka22)",
"license": "MIT",
"bugs": {
"url": "https://github.com/membraneframework/react-native-membrane-webrtc/issues"
},
"homepage": "https://github.com/membraneframework/react-native-membrane-webrtc#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"expo": "^50.0.7",
"phoenix": "^1.7.6",
"promise-fs": "^2.1.1"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/lodash": "^4.14.195",
"@types/phoenix": "^1.6.0",
"@types/promise-fs": "^2.1.2",
"@types/react": "^18.0.25",
"eslint": "^8.20.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"expo-module-scripts": "^3.0.4",
"expo-modules-core": "~1.11.8",
"husky": "^9.0.10",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-expo": "^50.0.2",
"lint-staged": "^15.2.2",
"pod-install": "^0.2.0",
"prettier": "^3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.4",
"release-it": "^17.0.3",
"typedoc": "^0.25.7",
"typedoc-plugin-mark-react-functional-components": "^0.2.2",
"typescript": "5.3.x"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "jest-expo",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"testEnvironment": "jsdom"
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"settings": {
"import/resolver": {
"babel-module": {}
}
},
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"lint-staged": {
"*.(js|ts|tsx)": [
"prettier --write",
"eslint --ext '.js,.ts,.tsx' --max-warnings=0 src/ example/src/"
]
}
}