-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.69 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
{
"private": true,
"name": "skyway-example-conference",
"version": "1.0.0",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack --mode=production",
"lint": "eslint --ext .ts,.tsx . && tsc --project . --noEmit"
},
"author": "NTT Communications Corp.",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@emotion/babel-preset-css-prop": "^11.12.0",
"@types/debug": "^4.1.12",
"@types/hark": "^1.2.5",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/sdp-transform": "^2.4.9",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@skyway-sdk/room": "^1.10.0",
"bowser": "^2.11.0",
"debug": "^4.3.7",
"dotenv-flow": "^4.1.0",
"hark": "^1.2.3",
"mobx": "^6.13.5",
"mobx-react": "^9.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"skyway-video-processors": "^1.0.1"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-typescript",
"@emotion/babel-preset-css-prop"
]
}
}