-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "react-webrtc-sample",
"version": "1.0.0",
"description": "a",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/macinjoke/react-webrtc-sample.git"
},
"author": "macinjoke <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"start:server": "ts-node server/index.ts",
"build": "webpack",
"lint": "eslint --ext ts --ext tsx src server",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"devDependencies": {
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.3",
"@types/react-router-dom": "^4.3.2",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.1",
"prettier": "^1.16.4",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"typescript": "^3.5.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"socket.io": "^2.4.0",
"socket.io-client": "^2.2.0"
}
}