{
  "name": "arqe",
  "version": "0.0.2",
  "license": "MIT",
  "description": "Abstract relational query engine",
  "repository": "https://github.com/andyfischer/arqe",
  "main": "dist/index.js",
  "files": [
      "dist",
      "README.md"
  ],
  "scripts": {
    "build": "tsc -p .",
    "test": "jest --watch",
    "tsc-watch": "tsc -w",
    "dev": "tsc-watch --onSuccess ./bin/arqe-server",
    "start": "tsc-watch --onSuccess ./bin/arqe-server",
    "cli": "node dist/startCli.js",
    "start-cli": "tsc-watch --onSuccess 'node dist/startCli.js'",
    "generate-api": "tsc-watch --onSuccess 'bin/arqe-code-generator --db src/db'",
    "generate-api-once": "bin/arqe-code-generator --db src/db"
  },
  "dependencies": {
    "bent": "^1.5.13",
    "body-parser": "^1.19.0",
    "chalk": "^2.4.2",
    "express": "^4.17.1",
    "fast-glob": "^3.0.4",
    "fs-extra": "^8.0.1",
    "glob": "^7.1.6",
    "minimist": "^1.2.0",
    "prop-types": "^15.7.2",
    "source-map-support": "^0.5.12",
    "ws": "^7.2.0",
    "yaml": "^1.10.0"
  },
  "devDependencies": {
    "@typescript-eslint/typescript-estree": "^3.0.0",
    "@types/jest": "^24.0.15",
    "@types/node": "^12.0.3",
    "concurrently": "^5.0.0",
    "eslint": "^7.5.0",
    "eslint-config-airbnb": "^18.2.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jsx-a11y": "^6.3.1",
    "eslint-plugin-react": "^7.20.3",
    "eslint-plugin-react-hooks": "^4.0.8",
    "jest": "^24.8.0",
    "prettier": "^1.18.2",
    "ts-jest": "^24.0.2",
    "tsc-watch": "^4.0.0",
    "typescript": "^3.5.3"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "setupFiles": [
      "./src/__tests__/setup.ts"
    ],
    "testMatch": [
      "**/src/**/__tests__/**/*.test.(js|ts)",
      "**/src/**/real-world-test/*.test.(js|ts)",
      "**/src/**/grind-test/*.test.(js|ts)"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx"
    ]
  }
}
