From 8019569f69786fcf4adda3332ce2d21a1d4bd7c1 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Tue, 21 Jul 2015 17:17:54 -0700 Subject: [PATCH] Add package.json --- .gitignore | 1 + package.json | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index c2658d7..bba4f02 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules/ +public diff --git a/package.json b/package.json new file mode 100644 index 0000000..1a0214e --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "name": "gatsby-starter-blog", + "version": "1.0.0", + "description": "Starter Gatsby Blog", + "main": "n/a", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git" + }, + "keywords": [ + "gatsby" + ], + "author": "Kyle Mathews ", + "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues" + }, + "homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme", + "dependencies": { + "lodash": "^3.10.0", + "moment": "^2.10.3", + "react": "^0.13.3", + "react-document-title": "^1.0.2", + "react-responsive-grid": "^0.2.0", + "react-router": "^0.13.3", + "typography": "^0.3.6", + "underscore.string": "^3.1.1" + } +}