{
  "name": "@soulpicks/atomic-layout",
  "version": "0.6.2",
  "description": "A single component to distribute a spacial relation in your layouts using CSS Grid.",
  "license": "MIT",
  "main": "lib/index.js",
  "types": "lib/types/index.d.ts",
  "scripts": {
    "start": "cross-env NODE_ENV=development webpack --watch",
    "storybook": "start-storybook -p 6020",
    "clean": "rimraf lib && exit 0",
    "build": "yarn run clean && yarn run build:types && cross-env NODE_ENV=production webpack",
    "build:types": "tsc",
    "cypress": "node_modules/.bin/cypress open",
    "examples": "webpack-dev-server --config examples/webpack.config.js",
    "test:unit": "cross-env BABEL_ENV=test jest --runInBand",
    "cypress:cli": "node_modules/.bin/cypress run --spec cypress/integration/index.js --browser chrome",
    "test:e2e": "server-test examples http-get://localhost:9987 cypress:cli",
    "test": "yarn run test:unit && yarn run test:e2e",
    "bundlesize": "node_modules/.bin/bundlesize",
    "precommit": "lint-staged",
    "prepush": "yarn run bundlesize && yarn run test:unit",
    "preversion": "yarn run build && yarn run bundlesize && yarn test"
  },
  "lint-staged": {
    ".{js,jsx}": [
      "eslint ./src/",
      "prettier --write",
      "git add"
    ]
  },
  "bundlesize": [
    {
      "path": "./lib/index.js",
      "maxSize": "25 kB"
    }
  ],
  "author": {
    "name": "Artem Zakharchenko",
    "email": "kettanaito@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kettanaito/atomic-layout"
  },
  "keywords": [
    "atomic",
    "layout",
    "responsive",
    "composition",
    "css grid",
    "react"
  ],
  "peerDependencies": {
    "@emotion/styled": ">= 10",
    "react": ">= 15"
  },
  "devDependencies": {
    "@babel/core": "^7.2.2",
    "@babel/plugin-proposal-class-properties": "^7.2.3",
    "@babel/plugin-proposal-export-default-from": "^7.2.0",
    "@babel/plugin-proposal-export-namespace-from": "^7.2.0",
    "@babel/plugin-proposal-object-rest-spread": "^7.2.0",
    "@babel/preset-env": "^7.2.3",
    "@babel/preset-react": "^7.0.0",
    "@babel/preset-typescript": "^7.1.0",
    "@cypress/webpack-preprocessor": "^4.0.2",
    "@storybook/addon-actions": "^4.0.9",
    "@storybook/addon-links": "^4.0.9",
    "@storybook/react": "^4.0.9",
    "@types/jest": "^23.3.12",
    "@types/react": "^16.7.18",
    "@types/react-dom": "^16.0.11",
    "@types/react-responsive": "^3.0.2",
    "@types/styled-components": "^4.1.4",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "^10.0.1",
    "babel-loader": "7.1.5",
    "bundlesize": "^0.17.0",
    "chai": "^4.2.0",
    "coveralls": "^3.0.2",
    "cross-env": "^5.2.0",
    "cypress": "^3.0.3",
    "eslint": "^5.9.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-loader": "^2.1.1",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-react": "^7.11.1",
    "husky": "^1.0.0-rc.9",
    "jest": "23.6.0",
    "lint-staged": "^8.1.0",
    "prettier": "^1.15.2",
    "react": "^16.6.3",
    "react-dom": "^16.6.3",
    "react-router-dom": "^4.3.1",
    "rimraf": "^2.6.3",
    "start-server-and-test": "^1.7.11",
    "storybook": "^1.0.0",
    "ts-jest": "^23.10.5",
    "tslint": "^5.12.0",
    "tslint-config-prettier": "^1.17.0",
    "tslint-loader": "^3.5.4",
    "tslint-react": "^3.6.0",
    "typescript": "^3.2.2",
    "url": "^0.11.0",
    "webpack": "^4.26.1",
    "webpack-bundle-analyzer": "^3.0.3",
    "webpack-cli": "^3.1.2",
    "webpack-dev-server": "^3.1.10"
  },
  "dependencies": {
    "react-responsive": "6.x"
  }
}
