forked from soketi/soketi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.39 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
{
"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": "MIT",
"jshintConfig": {
"esversion": 9
},
"dependencies": {
"arraybuffer-to-string": "^1.0.2",
"async": "^3.2.2",
"aws-sdk": "^2.1046.0",
"axios": "^0.24.0",
"body-parser": "^1.19.1",
"boolean": "^3.1.4",
"bullmq": "1.57.3",
"colors": "^1.4.0",
"dot-wild": "^3.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"ioredis": "^4.28.2",
"knex": "^0.95.14",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"pg": "^8.7.1",
"prom-client": "^14.0.1",
"prometheus-query": "^3.0.3",
"pusher": "^5.0.0",
"query-string": "^7.0.0",
"rate-limiter-flexible": "^2.3.6",
"uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js.git#v20.4.0",
"uuid": "^8.3.2",
"yargs": "^17.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-export-namespace-from": "^7.16.0",
"@babel/plugin-proposal-function-sent": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-throw-expressions": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@types/bull": "^3.15.7",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.19",
"@types/node": "^16.11.12",
"@types/pusher-js": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"jest-circus": "^27.4.4",
"pusher-js": "^7.0.3",
"tcp-port-used": "^1.0.2",
"ts-jest": "^26.5.6",
"tslib": "^2.3.1",
"typescript": "^4.5.3"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"build:watch": "./node_modules/.bin/tsc -W",
"lint": "eslint --ext .js,.ts ./src",
"prepublish": "npm run build",
"test": "jest --detectOpenHandles --forceExit --silent",
"test:watch": "npm test -- --watch"
},
"bin": {
"soketi": "bin/server.js",
"soketi-pm2": "bin/pm2.js"
}
}