forked from Cherry-OnTop/MainCard-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1013 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
38
39
40
41
42
43
44
{
"name": "mainCard-proxy",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Themyscira19/Video-Player-Proxy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Themyscira19/Video-Player-Proxy/issues"
},
"homepage": "https://github.com/Themyscira19/Video-Player-Proxy#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.16.4",
"http-proxy-middleware": "^0.19.1",
"request": "^2.88.0"
},
"devDependencies": {
"nodemon": "^1.18.9"
},
"proxy": {
"/main/*": {
"target": "http://localhost:9001"
},
"/details/*": {
"target": "http://localhost:9002"
},
"/critics/*": {
"target": "http://localhost:9003"
},
"/sidebar/*": {
"target": "http://localhost:9004"
}
}
}