A simple TicTacToe app with Golang backend and WebSockets gluing it all together.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
773 B

  1. {
  2. "name": "tictactoe-api",
  3. "version": "1.0.0",
  4. "description": "A Golang Server that opens a unique socket for two users to play TicTacToe online.",
  5. "private": true,
  6. "scripts": {
  7. "build": "webpack --watch"
  8. },
  9. "babel": {
  10. "presets": [
  11. [
  12. "@babel/preset-env",
  13. {
  14. "targets": {
  15. "esmodules": true
  16. }
  17. }
  18. ]
  19. ]
  20. },
  21. "author": "Levi Olson",
  22. "license": "MIT",
  23. "devDependencies": {
  24. "@babel/cli": "^7.2.3",
  25. "@babel/core": "^7.2.2",
  26. "@babel/preset-env": "^7.2.3",
  27. "css-loader": "^2.1.0",
  28. "mini-css-extract-plugin": "^0.5.0",
  29. "node-sass": "^4.11.0",
  30. "sass-loader": "^7.1.0",
  31. "style-loader": "^0.23.1",
  32. "webpack": "^4.28.1",
  33. "webpack-cli": "^3.2.1"
  34. }
  35. }