-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.56 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.56 KB
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
{
"name": "opentunnel",
"version": "1.1.0",
"main": "dist/index.js",
"repository": "https://github.com/ex3ndr/opentunnel.git",
"author": "Steve Korshakov <steve@korshakov.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "tsc && concurrently -n 'FRNT,BKND,CLNT' -c 'red,green,blue' --kill-others 'yarn cli:frontend' 'yarn cli:backend' 'yarn cli:client'",
"cli:client": "node ./dist/cli.js client 'wWbHNsjWPhqUo2etM6vc3qedoKO9jgYLklql1h4vzf3AKWrvCFe38/PBSLZNgmC1igGAXTq6axEb64S95AMeBAAQdGVzdC5pb2ZzaGl0LmNvbQAAAAA=' -s 'ws://localhost:9001'",
"cli:frontend": "node ./dist/cli.js frontend",
"cli:backend": "node ./dist/cli.js backend 'JGmVGhoC+ozGC3b+KuzGwtZfWehcMVKa2YfuG9Kd01A='",
"cli:test": "tsc && node ./dist/cli.js -p 80",
"key": "tsc && node ./dist/newKey.js",
"docker": "./scripts/increment_version.js && ./scripts/docker.sh"
},
"bin": {
"opentunnel": "bin/opentunnel.js"
},
"dependencies": {
"acme-client": "^3.3.1",
"commander": "^4.1.1",
"express": "4.17.1",
"inspirational-quotes": "^1.0.8",
"node-fetch": "^2.6.0",
"pino": "^5.17.0",
"pino-pretty": "^3.6.0",
"ts-nats": "1.2.4",
"tweetnacl": "^1.0.3",
"uuid": "7.0.1",
"ws": "7.2.1"
},
"devDependencies": {
"@types/acme-client": "^3.3.0",
"@types/commander": "^2.12.2",
"@types/express": "4.17.2",
"@types/node-fetch": "^2.5.5",
"@types/pino": "^5.15.5",
"@types/uuid": "7.0.0",
"@types/ws": "7.2.2",
"concurrently": "5.1.0",
"semver": "^7.1.3",
"typescript": "3.8.3"
}
}