Initial commit: courtlab tactical board with team management and MP4 export

This commit is contained in:
2026-09-08 12:22:20 +09:00
commit d2e39a452e
43 changed files with 7812 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "basket-utils-tactical-board",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "concurrently -k \"node server/index.js\" \"vite --host 0.0.0.0\"",
"server": "node server/index.js",
"bootstrap-admin": "node server/bootstrap-admin.js",
"seed-qa": "node server/seed-qa.js",
"build": "vite build",
"test": "vitest run"
},
"dependencies": {
"@fastify/cookie": "^11.1.2",
"@fastify/static": "^10.1.3",
"fastify": "^5.12.3",
"mongodb": "^7.6.0",
"three": "^0.178.0"
},
"devDependencies": {
"concurrently": "^9.2.4",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}