-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "fontys-rgm-client",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack",
"watch": "webpack -w",
"start": "nodemon -w dist/server.bundle.js --inspect dist/server.bundle.js",
"start:dev": "run-p -cl watch start"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@types/express": "^4.17.7",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.33",
"@types/uuid": "^8.3.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.2",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"source-map-loader": "^1.1.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.19.1",
"mediasoup": "^3.6.18",
"mediasoup-client": "^3.6.12",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"source-map-support": "^0.5.19",
"uuid": "^8.3.0"
}
}