{
  "name": "react-frontload",
  "version": "2.0.0",
  "description": "Simple full stack data loading for React",

  "author": "davnicwil",
  "license": "MIT",

  "repository": {
    "url": "https://github.com/davnicwil/react-frontload",
    "type": "git"
  },

  "main": "dist/index.js",
  "types": "dist/index.d.ts",

  "scripts": {
    "compile-ts": "tsc",
    "minify": "./node_modules/uglify-js/bin/uglifyjs ./dist/index.js -o ./dist/index.js",
    "build": "npm run compile-ts && npm run minify",
    "prepublishOnly": "npm run build"
  },

  "peerDependencies": {
    "react": ">=16.8.0"
  },
  "devDependencies": {
    "@types/react": "16.9.51",
    "prettier": "2.1.2",
    "react": "16.8.0",
    "typescript": "4.0.3",
    "uglify-js": "3.11.2"
  },

  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "all",
    "arrowParens": "always",
    "parser": "typescript"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "git add"
    ]
  },

  "keywords": [
    "react",
    "data",
    "load",
    "loading",
    "data loading",
    "data-loading",
    "fullstack",
    "full-stack",
    "full stack",
    "async",
    "SSR",
    "ssr",
    "server",
    "server render",
    "server rendering",
    "server rendered",
    "server-rendered"
  ]
}
