-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 752 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 752 Bytes
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
{
"author": "",
"email": "full_droper@pm.me",
"name": "cors-proxy",
"license": "ISC",
"version": "2.0.0",
"url": "https://github.com/Fulldroper/cors-proxy/issues",
"homepage": "https://github.com/Fulldroper/cors-proxy#readme",
"repository": {
"type": "git",
"url": "https://github.com/Fulldroper/cors-proxy.git"
},
"description": "Simple CORS Proxy Server",
"keywords": [
"CORS",
"Proxy Server",
"POST",
"GET"
],
"main": "./src/run.js",
"scripts": {
"start": "node .",
"test": "nodemon --exec npm start"
},
"dependencies": {
"@fastify/cors": "^8.2.1",
"axios": "^1.3.5",
"fastify": "^4.15.0"
},
"devDependencies": {
"dotenv": "^16.0.3",
"nodemon": "^2.0.22"
}
}