{
    "name": "ss-webpack-boilerplate",
    "version": "1.0.0",
    "description": "Lets you create SilverStripe faster",
    "author": "Tony Air <tony@twma.pro>",
    "license": "MIT",
    "private": false,
    "repository": {
        "type": "git",
        "url": "git+https://github.com/a2nt/silverstripe-webpack"
    },
    "engines": {
        "yarn": ">= 1.0.0"
    },
    "scripts": {
        "start": "cross-env NODE_ENV=development webpack-dev-server --https -d --config webpack.config.dev.js",
        "dash": "cross-env NODE_ENV=development webpack-dashboard -- webpack-dev-server --config webpack.config.dev.js",
        "prebuild": "rimraf build",
        "build": "cross-env NODE_ENV=production webpack -p --config webpack.config.prod.js --progress",
        "lint:check": "eslint ./app/client/src --config .eslintrc && sass-lint ./app/client/src --config .sasslintrc -v -q",
        "lint:fix": "eslint ./app/client/src --config .eslintrc --fix && sass-lint ./app/client/src --config .sasslintrc -v -q --fix",
        "lint:js": "eslint ./app/client/src --config .eslintrc",
        "lint:sass": "sass-lint ./app/client/src --config .sasslintrc -v -q"
    },
    "dependencies": {
        "bootbox": "^4.4.0",
        "bootstrap": "^4.1.1",
        "bootstrap-offcanvas": "^1.0.0",
        "core-util-is": "^1.0.2",
        "font-awesome": "^4.7.0",
        "foundation-emails": "^2.2.1",
        "gijgo": "^1.9.7",
        "jquery": "^3.3.1",
        "jquery-hammerjs": "^2.0.0",
        "jquery-zoom": "^1.7.21",
        "meta-lightbox": "^1.0.0",
        "offcanvas-bootstrap": "^2.5.2",
        "popper.js": "^1.14.3",
        "pouchdb": "^6.4.3",
        "react-bootstrap4-form-validation": "^1.0.5",
        "routie": "0.0.1",
        "smooth-scroll": "^14.2.0",
        "yarn": "^1.7.0"
    },
    "devDependencies": {
        "animate.css": "^3.5.2",
        "autoprefixer": "^7.2.5",
        "babel-core": "^6.26.3",
        "babel-eslint": "^8.2.3",
        "babel-loader": "^7.1.2",
        "babel-plugin-transform-react-jsx": "^6.24.1",
        "babel-preset-es2015": "^6.24.1",
        "babel-preset-react": "^6.24.1",
        "babel-preset-stage-2": "^6.24.1",
        "browser-sync": "^2.24.5",
        "browser-sync-webpack-plugin": "^1.2.0",
        "copy-webpack-plugin": "^4.3.1",
        "copyfiles": "^1.2.0",
        "cross-env": "^5.1.6",
        "css-loader": "^0.28.9",
        "eslint": "^4.18.1",
        "eslint-plugin-import": "^2.11.0",
        "eslint-plugin-jquery": "^1.3.1",
        "eslint-plugin-react": "^7.8.2",
        "exports-loader": "^0.7.0",
        "extract-text-webpack-plugin": "^3.0.2",
        "favicons-webpack-plugin": "0.0.9",
        "file-loader": "^1.1.5",
        "html-webpack-plugin": "^2.30.1",
        "laravel-mix": "^2.1.11",
        "lost": "^8.2.0",
        "node-sass": "^4.9.0",
        "object-assign": "^4.1.1",
        "optimize-css-assets-webpack-plugin": "^4.0.1",
        "postcss-loader": "^2.1.5",
        "react": "^16.3.2",
        "react-dom": "^16.3.2",
        "react-hot-loader": "^3.1.3",
        "redux": "^3.7.2",
        "redux-devtools-extension": "^2.13.2",
        "resolve-url-loader": "^2.2.1",
        "rimraf": "^2.6.2",
        "sass-lint": "^1.12.1",
        "sass-lint-fix": "^1.12.1",
        "sass-loader": "^6.0.6",
        "script-ext-html-webpack-plugin": "^1.8.8",
        "style-loader": "^0.19.0",
        "svg-url-loader": "^2.3.1",
        "uglifyjs-webpack-plugin": "^1.2.5",
        "url-loader": "^0.6.2",
        "webpack": "^3.12.0",
        "webpack-dev-server": "^2.11.1",
        "webpack-manifest-plugin": "^1.3.2",
        "webpack-merge": "^4.1.1"
    },
    "stylelint": {
        "rules": {
            "block-no-empty": null,
            "color-no-invalid-hex": true,
            "comment-empty-line-before": [
                "always",
                {
                    "ignore": [
                        "stylelint-commands",
                        "after-comment"
                    ]
                }
            ],
            "declaration-colon-space-after": "always",
            "indentation": [
                4,
                {
                    "except": [
                        "value"
                    ]
                }
            ],
            "max-empty-lines": 2,
            "rule-empty-line-before": [
                "always",
                {
                    "except": [
                        "first-nested"
                    ],
                    "ignore": [
                        "after-comment"
                    ]
                }
            ],
            "unit-whitelist": [
                "em",
                "rem",
                "%",
                "s",
                "px"
            ]
        }
    }
}