forked from BlaiseRoberts/proxy-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.23 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
{
"name": "itunes",
"version": "1.0.0",
"description": "This will help you if you are testing a URL successfully in Postman, but your application will not successfully make your request. You will get an error in your console that looks like this: ``` XMLHttpRequest cannot load https://itunes.apple.com/search?term=beyonce&media=music. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access. ``` or like this: ``` Blocked loading resource from url not allowed by $sceDelegate policy. URL: https://itunes.apple.com/search?term=beyonce&media=music ```",
"main": "server.js",
"engines": {
"node": "6.5.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"keywords": [],
"dependencies": {
"express": "^4.16.3",
"request": "^2.87.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/kenziebottoms/mixify-proxy-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kenziebottoms/mixify-proxy-server/issues"
},
"homepage": "https://github.com/kenziebottoms/mixify-proxy-server#readme"
}