aboutsummaryrefslogtreecommitdiffstats
path: root/backend/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'backend/package.json')
-rw-r--r--backend/package.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/backend/package.json b/backend/package.json
new file mode 100644
index 0000000..bb5d7b5
--- /dev/null
+++ b/backend/package.json
@@ -0,0 +1,27 @@
+{
+ "name": "tetris-backend",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "start": "tsc && node dist/app.js",
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "author": "",
+ "license": "ISC",
+ "type": "module",
+ "devDependencies": {
+ "@types/cors": "^2.8.15",
+ "@types/express": "^4.17.20",
+ "@types/node": "^20.8.10",
+ "@types/uuid": "^9.0.6",
+ "@types/ws": "^8.5.8",
+ "typescript": "^5.2.2"
+ },
+ "dependencies": {
+ "cors": "^2.8.5",
+ "express": "^4.18.2",
+ "uuid": "^9.0.1",
+ "ws": "^8.14.2"
+ }
+}