{
  "name": "duogeek-gutenberg-blocks",
  "version": "1.0.0",
  "description": "Gutenberg Blocks to help you with the new WordPress block editor.",
  "author": "DuoGeek",
  "license": "GPL-2.0-or-later",
  "keywords": [
    "blocks",
    "gutenberg",
    "layouts",
    "block editor",
    "templates"
  ],
  "homepage": "https://duogeek.ca",
  "private": true,
  "dependencies": {},
  "devDependencies": {
    "@babel/core": "^7.8.6",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/plugin-proposal-object-rest-spread": "^7.8.3",
    "@babel/plugin-transform-runtime": "^7.8.3",
    "@babel/preset-env": "^7.8.7",
    "@babel/preset-es2016": "^7.0.0-beta.53",
    "@babel/preset-react": "^7.8.3",
    "@wordpress/babel-plugin-makepot": "^2.1.3",
    "@wordpress/e2e-test-utils": "^4.7.0",
    "@wordpress/eslint-plugin": "^4.0.0",
    "@wordpress/i18n": "^1.2.3",
    "@wordpress/scripts": "^7.1.2",
    "acorn": "^7.1.1",
    "autoprefixer": "^9.8.0",
    "classnames": "^2.2.6",
    "css-loader": "^3.5.3",
    "extract-text-webpack-plugin": "^4.0.0-beta.0",
    "lodash": "^4.17.15",
    "md5": "^2.2.1",
    "memize": "^1.0.5",
    "moment": "^2.24.0",
    "node-sass": "^4.13.1",
    "npm-run-all": "^4.1.5",
    "re-resizable": "^4.11.0",
    "react": "^16.13.0",
    "react-dom": "^16.13.0",
    "react-lazy-load": "^3.0.13",
    "react-select": "^3.1.0",
    "sass-loader": "^8.0.2",
    "webpack": "^4.42.0"
  },
  "scripts": {
    "start": "wp-scripts start",
    "build": "npm-run-all makepot build-assets",
    "build-assets": "wp-scripts build",
    "makepot": "wp i18n make-pot . languages/dggb-blocks.pot --exclude=config,node_modules,scripts,vendor,dist/blocks.build.js",
    "lint:css": "wp-scripts lint-style",
    "lint:css:src": "wp-scripts lint-style 'src/**/*.css'",
    "lint:js": "wp-scripts lint-js",
    "lint:pkg-json": "wp-scripts lint-pkg-json",
    "test:e2e": "wp-scripts test-e2e",
    "test:e2e:help": "wp-scripts test-e2e --help",
    "test:unit:watch": "wp-scripts test-unit-js --watch"
  },
  "babel": {
    "presets": [
      [
        "@babel/env",
        {
          "modules": false,
          "targets": {
            "browsers": [
              "last 2 Chrome versions",
              "last 2 Firefox versions",
              "last 2 Safari versions",
              "last 2 iOS versions",
              "last 1 Android version",
              "last 1 ChromeAndroid version",
              "ie 11"
            ]
          }
        }
      ]
    ],
    "plugins": [
      [
        "@babel/plugin-proposal-class-properties"
      ],
      [
        "@babel/plugin-proposal-object-rest-spread",
        {
          "useBuiltIns": true
        }
      ],
      [
        "@babel/transform-react-jsx",
        {
          "pragma": "wp.element.createElement"
        }
      ],
      [
        "@babel/plugin-transform-runtime",
        {
          "helpers": false,
          "regenerator": true
        }
      ]
    ]
  }
}
