{ "private": true, "name": "jbuk-frontend", "version": "0.0.1", "repository": "https://github.com/jonnybarnes/jonnybarnes.uk", "license": "CC0-1.0", "dependencies": { "normalize.css": "^8.0.1", "puppeteer": "^5.0.0", "stylelint-a11y": "^1.2.3" }, "devDependencies": { "css-loader": "^3.6.0", "husky": "^4.2.5", "lint-staged": "^10.2.11", "mini-css-extract-plugin": "^0.9.0", "node-sass": "^4.14.1", "pre-commit": "^1.1.3", "sass-loader": "^9.0.2", "style-loader": "^1.2.1", "stylelint": "^13.6.1", "stylelint-config-standard": "^20.0.0", "webpack": "^4.43.0", "webpack-cli": "^3.3.12" }, "scripts": { "compress": "scripts/compress", "copy-dist": "cp ./node_modules/normalize.css/normalize.css ./public/assets/frontend/", "lint:es6": "eslint resources/es/*.js", "lint:sass": "stylelint --syntax=scss resources/sass/**/*.scss", "make-orig": "npm run make:css && npm run make:js", "make": "npm run lint:sass && npm run webpack", "make:css": "npm run lint:sass && npm run sass && npm run postcss", "make:js": "npm run lint:es6 && npm run webpack && npm run uglifyjs", "webpack": "webpack" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "./resources/es6/*.js": [ "eslint" ], "*.scss": [ "stylelint --syntax=scss" ] } }