iris-messenger/package.json
Tim Robinson f8fe5c7017
Fix port, run server with npx (#42)
- Default port of http-server is 8080, updating in README.
- Run http-server with npx so you don't need it installed globally.
2020-12-11 09:57:53 +02:00

14 lines
298 B
JSON

{
"name": "iris-messenger",
"version": "1.0.0",
"author": "Martti Malmi <sirius@iki.fi>",
"license": "MIT",
"devDependencies": {
"eslint": "^7.4.0",
"http-server": "^0.12.1"
},
"scripts": {
"start": "echo 'Iris: http://localhost:8080'; npx http-server src --silent"
}
}