-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 991 Bytes
/
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
{
"name": "p2p-chat",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "webpack --mode production && tsc",
"dev": "npm-run-all -p dev:*",
"dev:webpack": "webpack-dev-server --mode development",
"dev:tsc": "tsc -w --preserveWatchOutput",
"dev:node": "node-dev dist/server/"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/react": "^16.3.17",
"@types/react-dom": "^16.0.6",
"@types/socket.io": "^1.4.34",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.3",
"@types/webrtc": "^0.0.23",
"node-dev": "^3.1.3",
"npm-run-all": "^4.1.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"ts-loader": "^4.4.1",
"typescript": "^2.9.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"express": "^4.16.3",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"uuid": "^3.2.1"
}
}