forked from CODESPACE-CE-PROJECT/Terminal-Stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
47
48
{
"name": "terminal-stream",
"version": "1.0.0",
"description": "Terminal Stream",
"main": "src/server.ts",
"scripts": {
"start": "node dist/server.js",
"build": "rimraf dist && tsc --build",
"dev": "tsx watch src/server.ts",
"test": "tsx watch src/sample.ts"
},
"repository": "https://github.com/CODESPACE-CE-PROJECT/Terminal-Stream.git",
"author": "UnixVextor <withun.wch@gmail.com>",
"license": "MIT",
"dependencies": {
"@socket.io/cluster-adapter": "^0.2.2",
"@socket.io/cluster-engine": "^0.1.0",
"@socket.io/sticky": "^1.0.4",
"@types/redis": "^4.0.11",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dockerode": "^4.0.2",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"redis": "^4.7.0",
"rimraf": "^6.0.1",
"socket.io": "^4.8.0",
"tar-stream": "^3.1.7",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.17",
"@types/dockerode": "^3.3.31",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/pino": "^7.0.5",
"@types/socket.io": "^3.0.2",
"@types/tar-stream": "^3.1.3"
}
}