jonnybarnes.uk/package.json

52 lines
1.8 KiB
JSON
Raw Normal View History

2016-05-19 15:01:28 +01:00
{
"private": true,
"name": "jbuk-frontend",
"version": "0.0.1",
"repository": "https://github.com/jonnybarnes/jonnybarnes.uk",
"license": "CC0-1.0",
"dependencies": {
2019-01-25 17:36:56 +00:00
"normalize.css": "^8.0.1",
"puppeteer": "^19.1.2"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"autoprefixer": "^10.4.12",
2020-11-27 15:22:54 +00:00
"babel-loader": "^8.2.1",
"browserlist": "^1.0.1",
2022-06-01 21:20:32 +01:00
"compression-webpack-plugin": "^10.0.0",
2021-08-31 16:51:13 +01:00
"css-loader": "^6.2.0",
"cssnano": "^5.1.13",
"eslint": "^8.26.0",
"eslint-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.18",
"postcss-combine-duplicated-selectors": "^10.0.2",
"postcss-combine-media-query": "^1.0.1",
"postcss-import": "^15.0.0",
"postcss-loader": "^7.0.1",
"stylelint": "^14.14.0",
"stylelint-config-standard": "^29.0.0",
2022-02-27 19:42:49 +00:00
"stylelint-webpack-plugin": "^3.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"compress": "scripts/compress",
2019-07-13 18:05:50 +01:00
"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",
2020-02-21 13:41:02 +00:00
"make-orig": "npm run make:css && npm run make:js",
"make": "npm run lint:sass && npm run webpack",
2017-05-23 14:57:14 +01:00
"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"
},
"browserslist": [
"last 2 versions",
"> 1%",
"not IE 11",
"not IE_Mob 11"
]
2016-05-19 15:01:28 +01:00
}