Initial commit: Mobil_Tag project setup

This commit is contained in:
topsith
2026-08-05 20:29:18 +02:00
commit 9db3812cf8
46 changed files with 3888 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "mobile-tag",
"version": "0.1.0",
"private": true,
"description": "GPS-based outdoor lasertag for every smartphone as PWA",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"build": "npm run build:server && npm run build:client",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"install:all": "npm install && cd client && npm install && cd ../server && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}