{
  "name": "@solid/react",
  "version": "1.10.0",
  "description": "Efficiently build Solid apps and components with React",
  "author": "Ruben Verborgh <ruben@verborgh.org> (https://ruben.verborgh.org/)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/solid/react-components"
  },
  "main": "lib/index.js",
  "module": "module/index.js",
  "sideEffects": false,
  "files": [
    "src",
    "lib",
    "module",
    "dist",
    "!dist/demo",
    ".babelrc",
    "webpack"
  ],
  "dependencies": {
    "@babel/runtime": "^7.1.2",
    "@solid/query-ldflex": "^2.5.1",
    "prop-types": "^15.6.2",
    "solid-auth-client": "^2.3.0"
  },
  "peerDependencies": {
    "react": "^16.8.4"
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0",
    "@babel/core": "^7.0.1",
    "@babel/plugin-proposal-class-properties": "^7.1.0",
    "@babel/plugin-transform-runtime": "^7.1.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "babel-eslint": "^10.0.1",
    "babel-loader": "^8.0.2",
    "copy-webpack-plugin": "^5.0.0",
    "eslint": "^5.6.0",
    "eslint-plugin-jest": "^22.3.0",
    "eslint-plugin-react": "^7.11.1",
    "eslint-plugin-react-hooks": "^1.2.0",
    "html-webpack-include-assets-plugin": "^1.0.5",
    "html-webpack-plugin": "^3.2.0",
    "husky": "^1.1.2",
    "jest": "^24.3.0",
    "jest-dom": "3.1.2",
    "jest-mock-promise": "^1.0.23",
    "react": "^16.8.4",
    "react-dom": "^16.8.4",
    "react-hooks-testing-library": "0.3.4",
    "react-testing-library": "6.0.0",
    "webpack": "^4.19.1",
    "webpack-cli": "^3.1.0",
    "webpack-dev-server": "^3.1.14"
  },
  "scripts": {
    "build": "npm run build:clean && npm run build:lib && npm run build:module && npm run build:dist && npm run build:bundle && npm run build:demo",
    "build:clean": "rm -rf lib dist",
    "build:lib": "babel src --out-dir lib",
    "build:module": "BABEL_ENV=module babel src --out-dir module",
    "build:dist": "webpack -p --config=./webpack/webpack.lib.config.js",
    "build:bundle": "webpack -p --config=./webpack/webpack.bundle.config.js",
    "build:demo": "webpack --config=./webpack/webpack.demo.config.js",
    "jest": "jest",
    "lint": "eslint --ext .js,.jsx src test demo webpack",
    "prepublishOnly": "npm run build",
    "start": "npm run start:demo",
    "start:demo": "webpack-dev-server --config=./webpack/webpack.demo.config.js",
    "test": "npm run lint && npm run jest -- --collectCoverage",
    "test:dev": "npm run jest -- --watch"
  }
}
