https://github.com/searchkit/searchkit
Raw File
Tip revision: 07ac36803347de3c74099c7b2b51eafd63f14a3f authored by Joseph McElroy on 11 December 2022, 22:07:56 UTC
Hierarchical example + fix for facet filters
Tip revision: 07ac368
package.json
{
  "name": "searchkit",
  "private": true,
  "workspaces": [
    "apps/*",
    "packages/*"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/searchkit/searchkit.git"
  },
  "license": "Apache-2.0",
  "scripts": {
    "test": "turbo run test",
    "build": "turbo run build",
    "dev": "turbo run dev --parallel",
    "lint": "turbo run lint",
    "format": "prettier --write \"**/*.{ts,tsx,md}\"",
    "changeset": "changeset",
    "publish-packages": "turbo run build lint test && changeset version && changeset publish"
  },
  "devDependencies": {
    "@types/jest": "^26.0.15",
    "@types/node": "^18.0.0",
    "@types/react": "^18.0.25",
    "@typescript-eslint/eslint-plugin": "^4.4.1",
    "@typescript-eslint/parser": "^4.0.1",
    "husky": "^4.3.0",
    "prettier": "^2.1.2",
    "typescript": "^4.9.3",
    "eslint-config-custom": "*",
    "turbo": "latest"
  },
  "dependencies": {
    "@changesets/cli": "^2.25.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn run lint",
      "pre-push": "yarn test"
    }
  },
  "resolutions": {
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "@apollo/client": "^3.3.19"
  }
}
back to top