{ "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": "^1.18.1" }, "devDependencies": { "husky": "^3.0.0", "lint-staged": "^9.2.0", "pre-commit": "^1.1.3" }, "scripts": { "compress": "scripts/compress", "copy-dist": "cp ./node_modules/normalize.css/normalize.css ./public/assets/frontend/", "lint:es6": "eslint resources/es6-orig/*.js", "lint:sass": "stylelint --syntax=scss resources/sass-orig/**/*.scss", "make": "npm run make:css && npm run make:js", "make:css": "npm run lint:sass && npm run sass && npm run postcss", "make:js": "npm run lint:es6 && npm run webpack && npm run uglifyjs" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "./resources/es6/*.js": [ "eslint --fix", "git add" ], "*.scss": [ "stylelint --syntax=scss --fix", "git add" ] } }