gatsby-starter-blog-forestry/package.json
Kyle Mathews 7e36a90334 Add scripts to develop/build gatby w/o global Gatsby install
npm run develop
npm run build
2016-07-20 11:52:52 -07:00

67 lines
2 KiB
JSON

{
"name": "gatsby-starter-blog",
"description": "Starter Gatsby Blog",
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues"
},
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"gatsby": "^0.12.0",
"history": "^2.1.1",
"lodash": "^4.13.1",
"moment": "^2.14.1",
"react": "^15.2.1",
"react-document-title": "^2.0.2",
"react-dom": "^15.2.1",
"react-responsive-grid": "^0.3.3",
"react-router": "^2.6.0",
"safe-access": "^0.1.0",
"typography": "^0.11.7",
"typography-react": "^0.10.4",
"typography-theme-wordpress-2016": "^0.11.3",
"underscore.string": "^3.2.3"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.11.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"gh-pages": "^0.11.0",
"image-webpack-loader": "^2.0.0",
"null-loader": "^0.1.1",
"postcss-loader": "^0.9.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.10",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby build --prefix-links && gh-pages -d public"
}
}