forked from tlaverdure/laravel-echo-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "laravel-echo-server",
"version": "1.6.2",
"description": "Laravel Echo Node JS Server for Socket.io",
"repository": {
"type": "git",
"url": "https://github.com/tlaverdure/Laravel-Echo-Server.git"
},
"main": "dist/index.js",
"keywords": [
"laravel",
"socket.io"
],
"author": "Thiery Laverdure",
"license": "MIT",
"jshintConfig": {
"esversion": 6
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"prepublish": "npm run build"
},
"dependencies": {
"amqplib": "^0.6.0",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inquirer": "^7.1.0",
"ioredis": "^4.16.0",
"lodash": "^4.17.15",
"request": "^2.88.2",
"socket.io": "^2.3.0",
"sqlite3": "https://github.com/mapbox/node-sqlite3/tarball/master",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.1",
"typescript": "^3.8.3"
},
"peerDependecies": {
"sqlite3": "^3.1.13"
},
"bin": {
"laravel-echo-server": "bin/server.js"
}
}