Files
rust-rcon/package.json
T
alexfriesen cbe2b27e28 add command to start dev http server
you can use a simple node http server to start a http server for development on localhost:8888.
also added generic nodejs gitignore
2017-04-21 14:02:39 +02:00

16 lines
314 B
JSON

{
"name": "webrcon",
"description": "Game server Rcon, using websockets",
"repository": {
"type": "git",
"url": "https://github.com/Facepunch/webrcon"
},
"scripts": {
"server": "http-server -p 8888",
"start": "npm run server"
},
"devDependencies": {
"http-server": "^0.9.0"
}
}