-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.68 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
{
"name": "rtconnect",
"version": "0.0.55",
"description": "A lightweight React library to set up live streaming and real-time video calls with peers.",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "tsc --build",
"test": "jest --config",
"unit-test": "jest \"--testPathPattern='.+\\.unit\\.test\\.ts$'\"",
"react-test": "jest \"--testPathPattern='.+\\.unit\\.test\\.ts$'\"",
"integration-test": "jest \"--testPathPattern='.+\\.integration\\.test\\.ts$'\"",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/RTConnect.git"
},
"keywords": [
"react",
"react library",
"react component",
"live streaming",
"video",
"screen sharing",
"WebRTC",
"WebSockets",
"video calls",
"video conferencing",
"real time communication",
"live video conferencing",
"developer library"
],
"author": "Anthony King, Fariha Raisa Iftekher, Louis Disen, Yoojin Chang",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/RTConnect/issues"
},
"homepage": "https://github.com/oslabs-beta/RTConnect#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"ws": "^8.9.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/express": "^4.17.13",
"@types/http-server": "^0.12.1",
"@types/jest": "^29.0.3",
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/webrtc": "^0.0.32",
"@types/wicg-mediasession": "^1.1.3",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"https-browserify": "^1.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.4.3",
"net": "1.0.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tls": "0.0.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"url": "^0.11.0",
"util": "^0.12.4"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
},
"files": [
"dist/*"
]
}