2021-08-02 17:05:36 -04:00
|
|
|
{
|
|
|
|
"author": "Adam Piontek <adam@73k.us> (https://73k.us)",
|
|
|
|
"name": "@73kus/err",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Simple but pretty error pages for statis serving, e.g. with nginx",
|
|
|
|
"homepage": "https://git.73k.us",
|
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
|
|
|
"> 5%"
|
|
|
|
],
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Adam Piontek",
|
|
|
|
"email": "adam@73k.us",
|
|
|
|
"url": "https://73k.us"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/core": "^7.14.6",
|
|
|
|
"@babel/preset-env": "^7.14.7",
|
|
|
|
"autoprefixer": "^10.3.1",
|
|
|
|
"babel-loader": "^8.2.2",
|
|
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
|
|
"copy-webpack-plugin": "^9.0.1",
|
|
|
|
"css-loader": "^5.2.6",
|
|
|
|
"css-minimizer-webpack-plugin": "^3.0.2",
|
|
|
|
"eslint": "^7.30.0",
|
|
|
|
"eslint-config-airbnb": "^18.2.1",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-import": "^2.23.4",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
|
|
"file-loader": "^6.2.0",
|
|
|
|
"html-webpack-plugin": "^5.3.2",
|
|
|
|
"image-minimizer-webpack-plugin": "^2.2.0",
|
|
|
|
"imagemin-gifsicle": "^7.0.0",
|
|
|
|
"imagemin-jpegtran": "^7.0.0",
|
|
|
|
"imagemin-optipng": "^8.0.0",
|
|
|
|
"imagemin-svgo": "^9.0.0",
|
|
|
|
"mini-css-extract-plugin": "^2.1.0",
|
|
|
|
"postcss": "^8.3.6",
|
|
|
|
"postcss-loader": "^6.1.1",
|
|
|
|
"postcss-scss": "^4.0.0",
|
|
|
|
"prettier": "^2.3.2",
|
|
|
|
"sass": "^1.35.2",
|
|
|
|
"sass-lint": "^1.13.1",
|
|
|
|
"sass-loader": "^12.1.0",
|
|
|
|
"tailwindcss": "^2.2.7",
|
|
|
|
"terser-webpack-plugin": "^5.1.3",
|
|
|
|
"url-loader": "^4.1.1",
|
|
|
|
"webpack": "^5.44.0",
|
|
|
|
"webpack-bundle-analyzer": "^4.4.2",
|
|
|
|
"webpack-cli": "^4.7.2",
|
|
|
|
"webpack-dev-server": "^3.11.2",
|
|
|
|
"webpack-merge": "^5.8.0"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": "^12 || >=14"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"webpack",
|
|
|
|
"error",
|
|
|
|
"404",
|
|
|
|
"50x"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"private": false,
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git@git.73k.us:73kus-err.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "webpack --config configuration/webpack.dev.config.js --mode=development",
|
|
|
|
"watch": "webpack --config configuration/webpack.dev.config.js --mode=development --watch",
|
|
|
|
"bundle": "npm install && npm run watch",
|
|
|
|
"dev": "webpack serve --config configuration/webpack.dev.config.js --mode=development",
|
2021-08-02 17:14:49 -04:00
|
|
|
"production": "NODE_ENV=production webpack --config configuration/webpack.prod.config.js --mode=production",
|
2021-08-02 17:05:36 -04:00
|
|
|
"lint:sass": "sass-lint -v -q",
|
|
|
|
"lint:js": "eslint --ext .js src/js/",
|
|
|
|
"stats": "webpack --config configuration/webpack.prod.config.js --mode=production --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json"
|
|
|
|
},
|
|
|
|
"target": "web"
|
|
|
|
}
|