forked from dmikey/fastify-mtls-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 792 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
{
"name": "@dmikey/fastify-mtls-proxy",
"version": "1.0.2",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"test": "jest",
"start": "ts-node sample-server.ts",
"prepublishOnly": "tsc"
},
"dependencies": {
"@fastify/reply-from": "^7.0.1",
"@types/jest": "^27.5.1",
"axios": "^0.27.2",
"end-of-stream": "^1.4.4",
"fastify": "^3.29.0",
"fastify-plugin": "^3.0.1",
"http2": "^3.3.7",
"jest": "^28.1.0",
"pump": "^3.0.0",
"semver": "^7.3.7",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"undici": "^5.4.0",
"ws": "^8.7.0"
},
"devDependencies": {
"@types/end-of-stream": "^1.4.1",
"@types/pump": "^1.1.1",
"@types/semver": "^7.3.9",
"@types/ws": "^8.5.3"
}
}