jonnybarnes.uk/package.json

72 lines
2.6 KiB
JSON

{
"private": true,
"name": "jbuk-frontend",
"version": "0.0.1",
"repository": "https://github.com/jonnybarnes/jonnybarnes.uk",
"license": "CC0-1.0",
"dependencies": {
"a11y.css": "^5.0.3",
"alertify.js": "^1.0.12",
"marked": "^0.7.0",
"normalize.css": "^8.0.1",
"puppeteer": "^1.18.1"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"ajv": "^6.10.1",
"ajv-keywords": "^3.4.1",
"autoprefixer": "^9.6.1",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"postcss-cli": "^6.1.3",
"postcss-sass": "^0.4.1",
"pre-commit": "^1.1.3",
"source-list-map": "^2.0.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"uglify-js": "^3.6.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-sources": "^1.3.0"
},
"scripts": {
"compress": "scripts/compress",
"copy-dist": "cp ./node_modules/alertify.js/dist/css/alertify.css ./public/assets/frontend/ && cp ./node_modules/normalize.css/normalize.css ./public/assets/frontend/ && cp ./node_modules/a11y.css/css/*.css ./public/assets/frontend/a11y.css/",
"lint:es6": "eslint resources/es6/*.js",
"lint:sass": "stylelint --syntax=scss resources/sass/**/*.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",
"postcss": "postcss public/assets/css/app.css --use autoprefixer --autoprefixer.browsers \"> 5%\" --replace --map",
"sass": "sassc --style compressed --sourcemap resources/sass/app.scss public/assets/css/app.css",
"uglifyjs": "scripts/uglifyjs",
"webpack": "webpack --progress --colors"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./resources/es6/*.js": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint --syntax=scss --fix",
"git add"
]
}
}