-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 KB
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
{
"name": "avcore",
"version": "1.0.77",
"description": "avcore client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Codeda",
"keywords": [
"avcore"
],
"repository": {
"type": "git",
"url": "git@github.com:codeda/avcore-client.git"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6",
"@babel/preset-env": "^7.26.9",
"@types/socket.io-client": "^3.0.0",
"babel-loader": "^8.4.1",
"clean-webpack-plugin": "^3.0.0",
"terser-webpack-plugin": "^3.1.0",
"ts-loader": "^7.0.5",
"tsc": "^1.20150623.0",
"typescript": "^5.6.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"axios": "^0.26.1",
"mediasoup-client": "^3.7.17",
"socket.io-client": "^4.5.0"
},
"scripts": {
"build:prod": "webpack --env.production && cd client && npm run build:prod",
"build:dev": "webpack --env.development && cd client && npm run build:dev"
}
}