FoseFx/twitch-chatbot-boilerplate-core

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "twitch-chatbot-boilerplate",
  "version": "0.4.0",
  "description": "Boilerplate for twitch chatbot projects",
  "devDependencies": {
    "@types/body-parser": "^1.19.0",
    "@types/cookie-parser": "^1.4.2",
    "@types/express": "^4.17.6",
    "@types/jest": "~26.0.3",
    "@types/node": "~12.12.47",
    "@types/tmi.js": "^1.4.0",
    "@typescript-eslint/eslint-plugin": "~4.0.0",
    "@typescript-eslint/parser": "~3.10.1",
    "eslint": "~7.16.0",
    "eslint-config-prettier": "~7.1.0",
    "eslint-plugin-jest": "~24.1.0",
    "jest": "~26.6.0",
    "nock": "^13.0.2",
    "prettier": "~2.2.0",
    "rimraf": "~3.0.2",
    "semantic-release": "^17.1.1",
    "ts-jest": "~26.4.0",
    "tsutils": "~3.17.0",
    "typedoc": "^0.20.1",
    "typescript": "~4.0.2"
  },
  "scripts": {
    "clean": "rimraf coverage build tmp",
    "build": "tsc -p tsconfig.release.json",
    "build:watch": "tsc -w -p tsconfig.release.json",
    "lint": "eslint . --ext .ts,.tsx",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "gendocs": "typedoc --options typedoc.json",
    "prepare": "npm run clean && npm run lint && npm run build && npm run test"
  },
  "author": "Max Baumann <max@fosefx.com>",
  "license": "Unlicense",
  "dependencies": {
    "@types/node-fetch": "^2.5.7",
    "body-parser": "^1.19.0",
    "cookie-parser": "^1.4.5",
    "deepmerge": "^4.2.2",
    "dotenv": "^8.2.0",
    "ejs": "^3.1.3",
    "express": "^4.17.1",
    "node-fetch": "^2.6.0",
    "tmi.js": "^1.5.0",
    "tslib": "~2.0.0"
  },
  "main": "build/src/core/core.js",
  "types": "build/src/core/core.d.ts"
}