-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.1 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
{
"name": "api-proxy-server",
"version": "1.0.0",
"description": "## Introduction A proxy server built in ExpressJS that bypasses a CORs error on an API request. The server acts as a mediator between the client and server by adding CORS headers to a request. It operates between the frontend web application that initiates the request and the server that provides the response data. ## Usage In your front end application make a get request to https://api-proxy-server-steel.vercel.app/ with the corresponding method using one of the following routes below.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --coverage --verbose",
"coverage:upload": "codecov",
"start": "node api/index"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage",
"collectCoverage": true
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"vercel": "^39.0.2"
},
"devDependencies": {
"codecov": "^3.8.3",
"jest": "^29.7.0",
"supertest": "^7.0.0"
}
}