-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "etboggs-portfolio",
"description": "Portfolio website for Eric Boggs",
"version": "1.1.0",
"author": "Eric Boggs <[email protected]>",
"dependencies": {
"@dylanvann/gatsby-transformer-cloudinary": "1.0.36",
"babel-plugin-styled-components": "^1.10.0",
"dotenv": "6.2.0",
"gatsby": "2.9.10",
"gatsby-image": "2.0.0",
"gatsby-plugin-catch-links": "2.0.2",
"gatsby-plugin-feed": "2.0.5",
"gatsby-plugin-google-analytics": "2.0.5",
"gatsby-plugin-html-attributes": "1.0.5",
"gatsby-plugin-lodash": "3.0.1",
"gatsby-plugin-manifest": "2.0.2",
"gatsby-plugin-netlify": "2.1.3",
"gatsby-plugin-nprogress": "2.0.5",
"gatsby-plugin-offline": "2.0.5",
"gatsby-plugin-react-helmet": "3.0.0",
"gatsby-plugin-sharp": "^2.1.1",
"gatsby-plugin-sitemap": "2.0.1",
"gatsby-plugin-styled-components": "3.0.7",
"gatsby-plugin-twitter": "2.0.5",
"gatsby-plugin-web-font-loader": "1.0.4",
"gatsby-remark-autolink-headers": "2.0.5",
"gatsby-remark-copy-linked-files": "2.0.5",
"gatsby-remark-images": "2.0.1",
"gatsby-remark-prismjs": "2.0.5",
"gatsby-remark-responsive-iframe": "2.0.5",
"gatsby-source-cloudinary": "0.1.8",
"gatsby-source-filesystem": "^2.0.6",
"gatsby-transformer-json": "2.1.1-rc.6",
"gatsby-transformer-remark": "2.3.12",
"gatsby-transformer-sharp": "^2.2.1",
"lodash": "^4.17.4",
"moment": "^2.22.2",
"prismjs": "^1.15.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-icons": "3.2.2",
"react-share": "^2.0.0",
"react-twitter-widgets": "^1.7.1",
"styled-components": "^4.2.0",
"tailwind.macro": "^1.0.0-alpha.10",
"tailwindcss": "^1.0.2",
"url-join": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"cli-glob": "^0.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.17.0",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.1",
"write-good": "^1.0.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"dev": "gatsby develop -o",
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"build:pp": "gatsby build --prefix-paths",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark content/**/*",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}