forked from soketi/soketi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@soketi/soketi",
"version": "0.0.0-dev",
"description": "Just another simple, fast, and resilient open-source WebSockets server.",
"repository": {
"type": "git",
"url": "https://github.com/soketi/soketi.git"
},
"main": "dist/index.js",
"keywords": [
"laravel",
"socket.io",
"broadcasting",
"events",
"redis",
"socket",
"pusher"
],
"author": "Alex Renoki",
"license": "AGPL-3.0",
"jshintConfig": {
"esversion": 9
},
"dependencies": {
"arraybuffer-to-string": "^1.0.2",
"async": "^3.2.4",
"aws-sdk": "^2.1194.0",
"axios": "^0.27.2",
"boolean": "^3.1.4",
"bullmq": "^1.80.3",
"colors": "1.4.0",
"dot-wild": "^3.0.1",
"dotenv": "^16.0.1",
"ioredis": "^5.0.4",
"knex": "^1.0.7",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"nats": "^2.7.1",
"node-discover": "^1.2.1",
"pg": "^8.7.1",
"pm2": "^5.2.0",
"prom-client": "^14.0.1",
"prometheus-query": "^3.2.5",
"pusher": "^5.1.0-beta",
"query-string": "^7.1.0",
"rate-limiter-flexible": "^2.3.8",
"sqs-consumer": "^5.7.0",
"uuid": "^8.3.2",
"uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js.git#v20.10.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/preset-env": "^7.18.2",
"@types/bull": "^3.15.9",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.6",
"@types/pusher-js": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"body-parser": "^1.20.0",
"eslint": "^8.6.0",
"express": "^4.18.1",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"pusher-js": "^7.1.1-beta",
"tcp-port-used": "^1.0.2",
"ts-jest": "^26.5.6",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"scripts": {
"build": "node node_modules/typescript/bin/tsc",
"build:watch": "npm run build -- -W",
"lint": "eslint --ext .js,.ts ./src",
"prepublish": "npm run build",
"test": "jest --detectOpenHandles --forceExit --silent",
"test:local": "jest --detectOpenHandles --forceExit --verbose",
"test:watch": "npm test -- --watch"
},
"bin": {
"soketi": "bin/server.js",
"soketi-pm2": "bin/pm2.js"
}
}