keycard-site/package.json

94 lines
2.7 KiB
JSON
Executable File

{
"name": "static-site-boilerplate",
"description": "A modern boilerplate for static website development",
"version": "1.0.0",
"homepage": "http://staticsiteboilerplate.com",
"author": {
"name": "Eric Alli",
"url": "http://ericalli.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericalli/static-site-boilerplate.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ericalli/static-site-boilerplate/issues"
},
"keywords": [
"html5",
"css3",
"es6",
"frontend",
"sass",
"less",
"static",
"boilerplate",
"webpack"
],
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./config/webpack.config.js",
"start:dist": "cross-env NODE_ENV=production webpack-dev-server --config ./config/webpack.config.js && http-server ./dist -o",
"lint:js": "./node_modules/.bin/eslint \"src/**/*.js\"",
"lint:styles": "stylelint \"src/**/*.scss\"",
"build:dist": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.js",
"deploy": "node bin/gh-pages.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"autoprefixer": "^9.4.3",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.0.1",
"cssnano": "^4.1.7",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"file-loader": "^2.0.0",
"glob": "^7.1.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.0.0-beta.5",
"http-server": "^0.11.1",
"image-webpack-loader": "^4.6.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-sass": "^0.3.5",
"robotstxt-webpack-plugin": "^4.0.1",
"sass-loader": "^7.1.0",
"sitemap-webpack-plugin": "^0.6.0",
"style-loader": "^0.23.1",
"stylelint": "^8.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.4.3",
"stylelint-webpack-plugin": "^0.10.5",
"webapp-webpack-plugin": "^2.4.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5",
"webpackbar": "^3.1.4"
},
"dependencies": {
"chalk": "^2.4.1",
"clear": "^0.1.0",
"copy-webpack-plugin": "^4.6.0",
"dploy": "^1.2.0",
"enquirer": "^2.2.0",
"figlet": "^1.2.1",
"gh-pages": "^2.0.1",
"headhesive": "^1.2.4",
"jquery": "^3.3.1",
"normalize.css": "^8.0.1",
"reset-css": "^4.0.1",
"sanitize.css": "^8.0.0",
"webpack-dev-server": "^3.1.10"
}
}