This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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
{
"name": "@soketi/echo-server",
"version": "0.0.0-dev",
"description": "Echo Server is a container-ready, multi-scalable Node.js application used to host your own Socket.IO server for Laravel.",
"repository": {
"type": "git",
"url": "https://github.com/soketi/echo-server.git"
},
"main": "dist/index.js",
"keywords": [
"laravel",
"socket.io",
"broadcasting",
"events",
"redis",
"socket"
],
"author": "Alex Renoki",
"license": "MIT",
"jshintConfig": {
"esversion": 6
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "eslint --ext .js,.ts ./src ./tests",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"colors": "^1.4.0",
"dayjs": "^1.10.4",
"dot-wild": "^3.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ioredis": "^4.19.0",
"knex": "^0.95.2",
"mysql": "^2.18.1",
"pg": "^8.6.0",
"prom-client": "^13.1.0",
"prometheus-query": "^3.0.0",
"pusher": "^5.0.0",
"rate-limiter-flexible": "^2.2.2",
"redis-semaphore": "^4.1.0",
"redis-time-series-ts": "^1.3.0",
"request": "^2.88.2",
"socket.io": "^4.0.0",
"socket.io-redis": "^6.1.0",
"uuid": "^8.3.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@soketi/soketi-js": "^1.4.2",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@types/socket.io-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.2.4"
},
"bin": {
"echo-server": "bin/server.js"
}
}