-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.97 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
{
"name": "gatsby-starter-advanced",
"description": "GatsbyJS starter that includes examples for advanced use cases.",
"version": "1.1.0",
"author": "Ruben Harutyunyan <[email protected]>",
"dependencies": {
"babel-plugin-styled-components": "^1.10.0",
"babel-preset-gatsby": "0.3.0",
"gatsby": "^2.19.12",
"gatsby-image": "^2.2.40",
"gatsby-link": "2.3.0",
"gatsby-plugin-catch-links": "^2.1.25",
"gatsby-plugin-feed": "^2.3.27",
"gatsby-plugin-google-analytics": "^2.1.35",
"gatsby-plugin-lodash": "^3.1.20",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-netlify-cms": "^4.1.38",
"gatsby-plugin-nprogress": "^2.1.19",
"gatsby-plugin-offline": "^3.0.34",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-sitemap": "^2.2.27",
"gatsby-plugin-styled-components": "3.0.7",
"gatsby-plugin-twitter": "^2.1.19",
"gatsby-remark-autolink-headers": "^2.1.24",
"gatsby-remark-copy-linked-files": "^2.1.37",
"gatsby-remark-images": "^3.1.44",
"gatsby-remark-prismjs": "^3.3.31",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-remark-responsive-iframe": "^2.2.32",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-transformer-remark": "^2.6.50",
"gatsby-transformer-sharp": "^2.3.14",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"netlify-cms-app": "^2.11.13",
"prismjs": "^1.19.0",
"react": "^16.10.1",
"react-disqus-comments": "^1.4.0",
"react-dom": "^16.10.1",
"react-helmet": "^5.2.1",
"react-share": "^4.0.1",
"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": {
"cli-glob": "^0.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.18.2",
"gh-pages": "^2.2.0",
"prettier": "^1.17.0",
"remark-cli": "^7.0.0",
"remark-preset-lint-recommended": "^3.0.2",
"stylelint": "^13.0.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^19.0.0",
"write-good": "^1.0.1"
},
"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,.jsx .",
"lint:md": "remark content/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write",
"format:styles": "prettier '**/*.{css,scss}' --write"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}