-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
35 lines (35 loc) · 891 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
{
"name": "emiga-stream",
"version": "0.0.1",
"description": "Stream Anything",
"main": "./server/proxy.js",
"scripts": {
"start": "cd server && node proxy.js",
"proxy": "cd server && nodemon proxy.js",
"server": "cd server && nodemon server.js",
"dev": "concurrently \"npm run proxy\" \"npm run server\""
},
"devDependencies": {
"nodemon": "2.0.3"
},
"dependencies": {
"concurrently": "^4.1.1",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"socket.io": "^2.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eminmuhammadi/emiga-stream.git"
},
"keywords": [
"stream",
"emiga-stream"
],
"author": "Emin Muhammadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/eminmuhammadi/emiga-stream/issues"
},
"homepage": "https://github.com/eminmuhammadi/emiga-stream#readme"
}