Initial Commit

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-12-17 09:57:07 +01:00
commit eed359a457
6 changed files with 1629 additions and 0 deletions

17
package.json Normal file
View File

@ -0,0 +1,17 @@
{
"name": "Puissance4",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3",
"websocket": "^1.0.33"
},
"scripts": {
"start": "ts-node main.ts",
"dev": "ts-node-dev main.ts"
}
}