-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "dfanso-tunnel-server",
"version": "1.0.0",
"description": "Tunnel server for dfanso.dev",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"prod": "node dist/index.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@types/http-proxy": "^1.17.15",
"@types/spdy": "^3.4.9",
"@types/uuid": "^10.0.0",
"acme-client": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"greenlock": "^4.0.4",
"http-proxy": "^1.18.1",
"node-forge": "^1.3.1",
"pm2": "^5.3.0",
"spdy": "^4.0.2",
"uuid": "^11.0.3",
"winston": "^3.11.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.9.0",
"@types/node-forge": "^1.3.8",
"@types/ws": "^8.5.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"prettier": "^3.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}