Initial commit, woeking client/server connection, player movement

This commit is contained in:
2021-01-30 12:17:27 +02:00
commit 30e5d27b33
23 changed files with 113005 additions and 0 deletions

32
client/package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "globagamejam2021",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdarius/global-game-jam-2021.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rdarius/global-game-jam-2021/issues"
},
"homepage": "https://github.com/rdarius/global-game-jam-2021#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"p5": "^1.2.0",
"socket.io": "^3.1.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/socket.io": "^2.1.13",
"@types/p5": "^0.9.1",
"typescript": "^4.1.3"
}
}