board/package.json

15 lines
294 B
JSON
Raw Normal View History

2022-01-05 04:28:55 +00:00
{
2022-01-07 00:00:07 +00:00
"name": "multiplayer-whiteboard",
"version": "1.0.0",
"description": "A drawing program where everyone shares the same whiteboard",
2022-01-07 02:00:00 +00:00
"main": "index.js",
2022-01-07 00:00:07 +00:00
"scripts": {
2022-01-07 02:00:00 +00:00
"start": "node index.js"
2022-01-07 00:00:07 +00:00
},
"dependencies": {
"express": "^4.17.2",
"socket.io": "^4.4.1"
},
"license": "GPL"
2022-01-05 04:28:55 +00:00
}