{
  "name": "react-resource-router",
  "version": "0.30.0",
  "description": "Configuration driven routing solution for React that manages SPA route matching, data fetching and progressive rendering",
  "keywords": [
    "react",
    "router"
  ],
  "homepage": "https://github.com/atlassian-labs/react-resource-router#readme",
  "bugs": {
    "url": "https://github.com/atlassian-labs/react-resource-router/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://git@github.com/atlassian-labs/react-resource-router.git"
  },
  "license": "Apache-2.0",
  "author": "Atlassian Pty Ltd",
  "contributors": [
    {
      "name": "Jack Brown",
      "email": "jack.brown@mmy.com.au"
    },
    {
      "name": "Rohan Deshpande",
      "email": "rohan@creativelifeform.com"
    },
    {
      "name": "Alberto Gasparin",
      "email": "albertogasparin@gmail.com"
    },
    {
      "name": "Zekai Zheng",
      "email": "kiddkai@gmail.com"
    },
    {
      "name": "Dinesh Pandiyan",
      "email": "flexdinesh@gmail.com"
    },
    {
      "name": "Prithveesh Goel",
      "email": "prithveesh.goel@gmail.com"
    }
  ],
  "main": "build/cjs/index.js",
  "module": "build/esm/index.js",
  "types": "build/cjs/index.d.ts",
  "scripts": {
    "build": "npm run build:clean && npm run build:types-cjs && npm run build:types-esm && npm run build:cjs && npm run build:esm",
    "build:cjs": "babel src --out-dir build/cjs --extensions \".ts,.tsx\" --presets @babel/env",
    "build:clean": "rm -rf ./build",
    "build:esm": "babel src --out-dir build/esm --extensions \".ts,.tsx\"",
    "build:types-cjs": "tsc --emitDeclarationOnly --project tsconfig.build.json --outDir build/cjs",
    "build:types-esm": "tsc --emitDeclarationOnly --project tsconfig.build.json --outDir build/esm",
    "docs": "npx docsify-cli serve docs",
    "lint": "eslint --ext .ts,.tsx,.js src/ examples/",
    "lint:deps": "madge -c --extensions ts,tsx src",
    "lint:fix": "eslint --ext .ts,.tsx,.js src/ examples/ --fix",
    "lint:types": "tsc --noEmit",
    "lint:types-watch": "tsc --noEmit --watch",
    "release": "npx changeset publish",
    "start": "webpack-dev-server --open",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "dependencies": {
    "lodash.debounce": "^4.0.8",
    "lodash.noop": "^3.0.1",
    "path-to-regexp": "^6.3.0",
    "react-sweet-state": "^2.6.4",
    "url-parse": "^1.5.10"
  },
  "devDependencies": {
    "@babel/cli": "^7.23.9",
    "@babel/core": "^7.24.0",
    "@babel/eslint-parser": "^7.23.10",
    "@babel/plugin-proposal-class-properties": "^7.5.5",
    "@babel/plugin-proposal-export-namespace-from": "^7.5.2",
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "@babel/plugin-syntax-import-meta": "^7.10.4",
    "@babel/plugin-transform-runtime": "^7.24.0",
    "@babel/polyfill": "^7.4.4",
    "@babel/preset-env": "^7.24.0",
    "@babel/preset-react": "^7.23.3",
    "@babel/preset-typescript": "^7.23.3",
    "@babel/runtime": "^7.24.0",
    "@changesets/cli": "^2.27.1",
    "@codeshift/cli": "^0.22.0",
    "@codeshift/test-utils": "^0.3.2",
    "@codeshift/utils": "^0.2.5",
    "@testing-library/jest-dom": "^6.4.2",
    "@testing-library/react": "^14.2.1",
    "@testing-library/user-event": "^14.5.2",
    "@types/history": "^4.7.6",
    "@types/history-5": "npm:@types/history@^5.0.0",
    "@types/jest": "^29.5.12",
    "@types/jscodeshift": "^0.11.11",
    "@types/lodash.debounce": "^4.0.9",
    "@types/lodash.noop": "^3.0.9",
    "@types/react": "^18.2.64",
    "@types/react-dom": "^18.2.21",
    "@types/url-parse": "^1.4.11",
    "@typescript-eslint/eslint-plugin": "^7.1.1",
    "@typescript-eslint/parser": "^7.1.1",
    "@webpack-cli/serve": "^2.0.5",
    "babel-eslint": "^10.0.2",
    "babel-jest": "^29.7.0",
    "babel-loader": "^9.1.3",
    "babel-types": "^6.26.0",
    "docsify-cli": "^4.4.4",
    "dtslint": "^4.2.1",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-import-resolver-typescript": "^3.6.1",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jest": "^27.9.0",
    "eslint-plugin-prettier": "^5.1.3",
    "eslint-plugin-react": "^7.34.0",
    "eslint-plugin-react-hooks": "^4.6.0",
    "history": "4.10.1",
    "history-5": "npm:history@^5.2.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "jscodeshift": "^0.15.2",
    "madge": "^6.1.0",
    "prettier": "^3.2.5",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "typescript": "^5.3.3",
    "webpack": "^5.90.3",
    "webpack-dev-server": "^5.0.2"
  },
  "peerDependencies": {
    "@babel/runtime": "^7",
    "@types/react": "^16.9.35 || ^18.2.64",
    "@types/react-dom": "^16.9.8 || ^18.2.21",
    "history": "^4 || ^5",
    "react": "^16.8.0 || ^18.2.0",
    "react-dom": "^16.8.0 || ^18.2.0"
  },
  "engines": {
    "node": ">=16.0"
  }
}
