-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 944 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 944 Bytes
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
{
"name": "webrtc-example-simple",
"version": "1.0.0",
"description": "Simple usage of WebRTC to establish a connection between two tabs without a signaling server",
"scripts": {
"build": "npm run clean && webpack --config webpack/production.config.js",
"clean": "rm -rf docs",
"start": "webpack serve --config webpack/development.config.js"
},
"author": "Carles Capellas <capellas.carles@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.3",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}