{
  "name": "app_title",
  "version": "1.0.0",
  "description": "Kata bootstrapped with kataclism",
  "main": "index.js",
  "scripts": {
    "build": "tsc -p .",
    "test:once": "jest",
    "test:watch": "jest --watchAll"
  },
  "jest": {
    "roots": [
      "src/",
      "test"
    ],
    "testMatch": [
      "/__tests__/.*\\.(ts|tsx|js)",
      "**/?(*.)(spec|test).ts?(x)"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    }
  },
  "prettier": {
    "trailingComma": "es5",
    "semi": false,
    "singleQuote": true
  },
  "devDependencies": {
    "typescript": "^3.3.3",
    "@types/typescript": "^2.0.0",
    "@types/jest": "^27.4.1",
    "jest": "^27.5.1",
    "ts-jest": "^27.1.4",
    "ts-node": "^10.7.0"
  }
}