Skip to content

Commit

Permalink
✨ (all) add batch module for analyzing and replaying games
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitlinger committed Aug 14, 2021
1 parent 293ef53 commit bd85a00
Show file tree
Hide file tree
Showing 26 changed files with 1,307 additions and 71 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
batch/replay/
batch/dist/
27 changes: 27 additions & 0 deletions batch/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "@gaia-project/batch",
"version": "0.1",
"description": "Extracts statistics from games",
"type": "commonjs",
"contributors": [
"zeitlinger"
],
"repository": "[email protected]:boardgamers-mono/gaia-project.git",
"scripts": {
"build": "tsc -p .",
"stats": "ts-node src/stats.ts",
"replay": "ts-node src/replay.ts"
},
"dependencies": {
"@gaia-project/engine": "workspace:../viewer",
"csv-writer": "^1.6.0",
"lodash": "^4.17.15",
"mongoose": "^5.9.10"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^16.4.13",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}
341 changes: 341 additions & 0 deletions batch/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bd85a00

Please sign in to comment.