diff options
author | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-03-12 00:21:13 -0700 |
---|---|---|
committer | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-03-12 00:21:13 -0700 |
commit | 1cceccbf79836dac091505ff5bfd0283bcea13b8 (patch) | |
tree | 25b1517bfe0179272b8ca1d6e2a659142ed56fad /package.json | |
parent | cf029294686fd0a32c4abf59ddd974eeb1b0ba37 (diff) |
Update deps & tree shake-able font awesome
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 52 |
1 files changed, 28 insertions, 24 deletions
diff --git a/package.json b/package.json index 4802f3e..c87cb4a 100644 --- a/package.json +++ b/package.json @@ -1,41 +1,45 @@ { - "name": "gatsby-starter-default", - "description": "Gatsby default starter", + "name": "portfolio", + "private": true, + "description": "Personal portfolio", "version": "1.0.0", - "author": "Kyle Mathews <mathews.kyle@gmail.com>", + "author": "Nick Van Doorn <vandoorn.nick@gmail.com>", "dependencies": { - "@emotion/core": "^10.0.7", - "emotion": "^10.0.7", - "font-awesome": "^4.7.0", - "gatsby": "^2.1.23", - "gatsby-image": "^2.0.31", - "gatsby-plugin-emotion": "^4.0.4", - "gatsby-plugin-manifest": "^2.0.22", - "gatsby-plugin-offline": "^2.0.24", - "gatsby-plugin-react-helmet": "^3.0.8", - "gatsby-plugin-sharp": "^2.0.25", - "gatsby-source-filesystem": "^2.0.23", - "gatsby-transformer-sharp": "^2.1.15", + "@babel/core": "^7.0.0", + "@emotion/core": "^10.0.9", + "@fortawesome/fontawesome-svg-core": "^1.2.15", + "@fortawesome/free-brands-svg-icons": "^5.7.2", + "@fortawesome/free-solid-svg-icons": "^5.7.2", + "@fortawesome/react-fontawesome": "^0.1.4", + "emotion": "^10.0.9", + "gatsby": "^2.1.30", + "gatsby-image": "^2.0.32", + "gatsby-plugin-emotion": "^4.0.6", + "gatsby-plugin-manifest": "^2.0.23", + "gatsby-plugin-offline": "^2.0.25", + "gatsby-plugin-react-helmet": "^3.0.9", + "gatsby-plugin-sharp": "^2.0.27", + "gatsby-source-filesystem": "^2.0.24", + "gatsby-transformer-sharp": "^2.1.16", "prop-types": "^15.7.2", "react": "^16.8.4", "react-dom": "^16.8.4", "react-helmet": "^5.2.0" }, - "keywords": [ - "gatsby" - ], + "devDependencies": { + "prettier": "^1.16.4" + }, "license": "MIT", "scripts": { "build": "gatsby build", "develop": "gatsby develop", - "format": "prettier --write '**/*.js'", - "test": "echo \"Error: no test specified\" && exit 1" - }, - "devDependencies": { - "prettier": "^1.16.4" + "format": "prettier --write src/**/*.{js,jsx}", + "start": "npm run develop", + "serve": "gatsby serve", + "test": "jest" }, "repository": { "type": "git", - "url": "https://github.com/gatsbyjs/gatsby-starter-default" + "url": "https://github.com/nvandoorn/portfolio" } } |