{
  "name": "playball",
  "version": "3.4.0",
  "description": "Watch MLB games from the comfort of your terminal",
  "keywords": [
    "MLB",
    "gameday",
    "baseball",
    "cli",
    "terminal"
  ],
  "scripts": {
    "build": "npm run lint && npm run clean && npm run compile",
    "clean": "rimraf ./dist",
    "compile": "babel src --out-dir dist",
    "lint": "eslint --ext .jsx,.js src",
    "start": "babel src --out-dir dist --watch",
    "prepublishOnly": "npm run build",
    "react-devtools": "react-devtools",
    "test": "echo \"No tests yet\""
  },
  "bin": {
    "playball": "./bin/playball.js"
  },
  "files": [
    "bin",
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/paaatrick/playball.git"
  },
  "author": "Patrick Kalita <patrick.kalita@gmail.com> (http://paaatrick.github.io/)",
  "bugs": {
    "url": "https://github.com/paaatrick/playball/issues"
  },
  "homepage": "https://github.com/paaatrick/playball",
  "preferGlobal": true,
  "license": "MIT",
  "dependencies": {
    "@date-fns/utc": "^2.1.1",
    "@reduxjs/toolkit": "^1.8.0",
    "axios": "^0.26.1",
    "blessed": "^0.1.81",
    "commander": "^11.0.0",
    "conf": "^11.0.1",
    "date-fns": "^4.1.0",
    "figlet": "^1.10.0",
    "json-patch": "^0.7.0",
    "prop-types": "^15.8.1",
    "raf": "^3.4.1",
    "react": "^17.0.2",
    "react-blessed": "^0.7.2",
    "react-devtools-core": "^4.24.7",
    "react-redux": "^7.2.6",
    "redux": "^4.1.2",
    "update-notifier": "^6.0.2",
    "winston": "^3.7.2"
  },
  "devDependencies": {
    "@babel/cli": "^7.17.10",
    "@babel/core": "^7.18.2",
    "@babel/node": "^7.17.10",
    "@babel/preset-env": "^7.18.2",
    "@babel/preset-react": "^7.17.12",
    "babel-plugin-module-resolver": "^4.1.0",
    "eslint": "^8.12.0",
    "eslint-plugin-react": "^7.29.4",
    "react-devtools": "^4.24.7",
    "rimraf": "^2.6.3",
    "ws": "^8.5.0"
  },
  "type": "module",
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": "14"
          },
          "modules": false
        }
      ],
      "@babel/preset-react"
    ],
    "plugins": [
      [
        "module-resolver",
        {
          "alias": {
            "react-redux": "react-redux/lib/alternate-renderers.js"
          }
        }
      ]
    ]
  }
}
