forked from EpicGames/PixelStreamingInfrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 844 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "@epicgames-ps/cirrus-matchmaker",
"version": "0.0.1",
"private": true,
"description": "Cirrus servers connect to the Matchmaker which redirects a browser to the next available Cirrus server",
"scripts": {
"start-local": "run-script-os --",
"start-local:windows": ".\\platform_scripts\\cmd\\run.bat",
"start-local:default": "./platform_scripts/bash/run.sh",
"start": "run-script-os",
"start:windows": "platform_scripts\\cmd\\node\\node.exe matchmaker.js",
"start:default": "if [ `id -u` -eq 0 ]\nthen\n export process=\"./platform_scripts/bash/node/bin/node matchmaker.js\"\nelse\n export process=\"sudo ./platform_scripts/bash/node/bin/node matchmaker.js\"\nfi\n$process "
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"socket.io": "4.6.0",
"yargs": "17.3.1"
}
}