forked from arunesh90/CF-Access-verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 875 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
{
"name": "cf-access-verify",
"version": "1.1.0",
"description": "Simple reverse proxy that's meant to be used to verify that all requests are done through Cloudflare Access and that they're valid",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"test": "yarn build && node dist/main.js"
},
"author": "Arunesh <[email protected]>",
"license": "MIT",
"dependencies": {
"cookie": "^0.4.0",
"dotenv": "^8.0.0",
"http-proxy": "^1.18.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/cookie": "^0.3.3",
"@types/dotenv": "^6.1.1",
"@types/http-proxy": "^1.1.0",
"@types/jsonwebtoken": "^8.3.2",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.62",
"@types/node-fetch": "^2.5.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}