-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "raven-client",
"version": "0.1.0",
"description": "P2P Audio/Video conference",
"main": "index.js",
"scripts": {
"prebuild": "rimraf ./build",
"build": "cross-env URI_PREFIX=/raven SIGNALING_URL=https://172.29.200.9 SIGNALING_PATH=/signaling/ webpack --env=prod",
"start": "cross-env SIGNALING_URL=ws://localhost:3334 webpack-dev-server --env=dev",
"test": "standard && jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"p2p",
"webrtc",
"signalling",
"conference",
"audio",
"video"
],
"author": "Alexey Vakulich <alexey.vakulich@gmail.com>",
"license": "ISC",
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"expect",
"URI_PREFIX",
"SIGNALING_URL",
"SIGNALING_PATH"
]
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@ok2ju/simple-multi-peer": "^0.2.0",
"hark": "^1.2.3",
"prop-types": "^15.6.2",
"react": "16.8.0-alpha.1",
"react-dom": "16.8.0-alpha.1",
"react-popper": "^1.0.2",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"redux": "^4.0.1",
"redux-saga": "^1.0.0",
"socket.io-client": "^2.1.1",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"babel-plugin-styled-components": "^1.8.0",
"cross-env": "^5.2.0",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.8.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"rimraf": "^2.6.2",
"standard": "*",
"standard-loader": "^6.0.1",
"url-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.6"
}
}