-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "webrtc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"dev-server": "nodemon --config nodemon.json ./src/server.ts",
"dev-client": "webpack-dev-server --config ./webpack.config.js",
"dev": "concurrently -k \"npm run dev-client\" \"npm run dev-server\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"@vue/compiler-sfc": "^3.2.45",
"clean-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.20",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vue-loader": "^17.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"concurrently": "^7.6.0",
"koa": "^2.14.1",
"koa-send": "^5.0.1",
"koa-socket": "^4.4.0",
"koa-static": "^5.0.0",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"uuid": "^9.0.0",
"vue": "^3.2.45",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"webrtc-adapter": "^8.2.0"
}
}