Skip to content

Instantly share code, notes, and snippets.

@clhenrick
Created August 13, 2017 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clhenrick/7ee7bdc417b3128828992a1784f78b3d to your computer and use it in GitHub Desktop.
Save clhenrick/7ee7bdc417b3128828992a1784f78b3d to your computer and use it in GitHub Desktop.
sample package.json
{
"name": "gin-static-site-starter",
"private": true,
"version": "1.0.0",
"description": "A static site starter kit using Webpack, ES6, SASS, Skeleton, React, etc.",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --open --config webpack.config.js",
"build": "npm run clean && webpack -p --progress --colors --config webpack.dist.config.js",
"clean": "rimraf dist",
"deploy:gh-pages": "npm run build && . ./deploy_gh_pages.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreenInfo-Network/gin-static-site-starter.git"
},
"author": "Chris Henrick <chrishenrick@gmail.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/GreenInfo-Network/gin-static-site-starter/issues"
},
"homepage": "https://github.com/GreenInfo-Network/gin-static-site-starter#readme",
"browserslist": [
"defaults",
"not ie < 11"
],
"dependencies": {
"babel-polyfill": "^6.23.0",
"leaflet": "^1.0.3",
"lodash": "^4.17.4",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "beta.7"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.3.0",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"postcss-loader": "^2.0.6",
"react-moment-proptypes": "^1.4.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.18.2",
"stylelint-config-standard": "^16.0.0",
"stylelint-webpack-plugin": "^0.7.0",
"uglifyjs-webpack-plugin": "^0.4.3",
"url-loader": "^0.5.9",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2",
"webpack-notifier": "^1.5.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment