-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 3 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
89
90
91
92
93
94
{
"name": "wingify-engineering-blog",
"description": "Wingify's Engineering Blog",
"version": "1.0.0",
"author": "Wingify Engineering <engineering@wingify.com>",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"gatsby": "^2.19.49",
"gatsby-image": "^2.4.6",
"gatsby-plugin-catch-links": "^2.1.5",
"gatsby-plugin-disqus": "^1.1.7",
"gatsby-plugin-feed": "^2.3.9",
"gatsby-plugin-google-analytics": "^2.1.11",
"gatsby-plugin-google-tagmanager": "^2.3.12",
"gatsby-plugin-htaccess": "^1.2.1",
"gatsby-plugin-manifest": "^2.2.9",
"gatsby-plugin-nprogress": "^2.1.4",
"gatsby-plugin-offline": "^2.2.10",
"gatsby-plugin-react-helmet": "^3.1.5",
"gatsby-plugin-sass": "^2.1.12",
"gatsby-plugin-sharp": "^2.2.18",
"gatsby-plugin-sitemap": "^2.2.9",
"gatsby-plugin-twitter": "^2.1.4",
"gatsby-plugin-typography": "^2.3.7",
"gatsby-remark-autolink-headers": "^2.1.8",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-images": "^3.1.19",
"gatsby-remark-prismjs": "^3.3.9",
"gatsby-remark-relative-images": "^0.3.0",
"gatsby-remark-responsive-iframe": "^2.2.10",
"gatsby-source-filesystem": "^2.1.18",
"gatsby-transformer-remark": "^2.6.19",
"gatsby-transformer-sharp": "^2.2.12",
"html-entities": "^1.3.1",
"lodash": "^4.17.15",
"markdown": "^0.5.0",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"prismjs": "^1.17.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-markdown": "^4.3.1",
"react-share": "^2.4.0",
"react-twitter-widgets": "^1.7.1",
"react-typography": "^0.16.19",
"slug": "^3.2.0",
"typography": "^0.16.19",
"typography-theme-stow-lake": "^0.16.19",
"url-join": "^4.0.1"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.3",
"gh-pages": "^2.1.1",
"prettier": "^1.18.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"stylefmt": "^6.0.3",
"stylelint": "^13.2.1",
"stylelint-config-standard-scss": "^1.1.0",
"stylelint-scss": "^3.15.0",
"write-good": "^1.0.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build:pp && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .js",
"lint:md": "remark content/posts/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write",
"test": "echo \"Error: no test specified\""
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}