-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 941 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
{
"name": "xorb-proxy",
"version": "1.0.0",
"description": "A Minimalisitic Secure CORS Proxy by Xorbious",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"proxy-server",
"nodejs",
"express",
"cors"
],
"author": {
"name": "Xorbious",
"email": "[email protected]",
"url": "https://xorbious.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ogheneovo12/xorb-proxy.git"
},
"bugs": {
"url": "https://github.com/ogheneovo12/xorb-proxy/issues",
"email": "[email protected]"
},
"homepage": "https://xorb-proxy.xorbious.com",
"license": "MIT",
"dependencies": {
"axios": "^1.3.4",
"express": "^4.18.2",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}