-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "echo-gate",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node --require ts-node/register bin/echo-gate.ts",
"test": "npx jest --detectOpenHandles",
"dist": "npx tsc; cp -r views dist; cp -r template dist"
},
"engines": {
"node": ">=16.0.0"
},
"author": "Nunu",
"license": "ISC",
"keywords": [
"proxy",
"http",
"upstreams",
"reverse-proxy",
"load-balancing",
"api-gateway"
],
"repository": {
"url": "https://github.com/NunuM/talos-nodejs-proxy",
"type": "git"
},
"dependencies": {
"@log4js-node/smtp": "^2.0.8",
"log4js": "^6.9.1",
"redis": "^4.6.7",
"pluto-http-client": "^1.0.8",
"jsonschema": "^1.4.1",
"uuid": "^8.3.2",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1"
},
"devDependencies": {
"docdash": "^1.2.0",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"@types/node": "18.17.0",
"@types/redis": "^4.0.11",
"@types/jest": "^28.1.4",
"@types/uuid": "^8.3.4",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2"
}
}