forked from dondido/webrtc-video-room
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "webrtc-video-room",
"version": "1.0.0",
"description": "WebRTC Video Room is a Single-Page App in React using React Router that provides peer-to-peer video and audio communication in a web browser with no plugins or extensions required.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dondido/webrtc-video-room.git"
},
"scripts": {
"start": "node server.js",
"prod": "NODE_ENV=production node server.js",
"postinstall": "webpack -p --config ./webpack.config.js --progress"
},
"author": "Dian Dimitrov",
"license": "MIT",
"dependencies": {
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"babel-runtime": "^6.11.6",
"compression": "^1.6.2",
"css-loader": "^0.25.0",
"express": "^4.13.4",
"express-session": "^1.14.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"redux": "^3.6.0",
"remarkable": "^1.6.2",
"serve-favicon": "^2.3.0",
"socket.io": "^1.4.8",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"eslint": "^3.7.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0"
}
}