Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.18.2 to 7.18.6. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.18.6/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
52 lines
1.8 KiB
JSON
52 lines
1.8 KiB
JSON
{
|
|
"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": "^14.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.18.6",
|
|
"@babel/preset-env": "^7.18.6",
|
|
"autoprefixer": "^10.2.4",
|
|
"babel-loader": "^8.2.1",
|
|
"browserlist": "^1.0.1",
|
|
"compression-webpack-plugin": "^10.0.0",
|
|
"css-loader": "^6.2.0",
|
|
"cssnano": "^5.0.2",
|
|
"eslint": "^8.6.0",
|
|
"eslint-webpack-plugin": "^3.0.1",
|
|
"mini-css-extract-plugin": "^2.6.1",
|
|
"postcss": "^8.1.6",
|
|
"postcss-combine-duplicated-selectors": "^10.0.2",
|
|
"postcss-combine-media-query": "^1.0.1",
|
|
"postcss-import": "^14.0.0",
|
|
"postcss-loader": "^7.0.0",
|
|
"pre-commit": "^1.1.3",
|
|
"stylelint": "^14.9.1",
|
|
"stylelint-config-standard": "^25.0.0",
|
|
"stylelint-webpack-plugin": "^3.1.1",
|
|
"webpack": "^5.3.2",
|
|
"webpack-cli": "^4.10.0"
|
|
},
|
|
"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"
|
|
},
|
|
"browserslist": [
|
|
"last 2 versions",
|
|
"> 1%",
|
|
"not IE 11",
|
|
"not IE_Mob 11"
|
|
]
|
|
}
|