-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 KB
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
{
"private": true,
"dependencies": {
"gatsby": "^1.8.11",
"gatsby-link": "^1.6.7",
"gatsby-plugin-google-tagmanager": "^1.0.17",
"gatsby-plugin-manifest": "^1.0.3",
"gatsby-plugin-offline": "^1.0.3",
"gatsby-plugin-react-helmet": "^2.0.6",
"gatsby-plugin-react-next": "^1.0.10",
"gatsby-plugin-remove-trailing-slashes": "^1.0.9",
"gatsby-plugin-sitemap": "^1.2.1",
"gatsby-plugin-styled-components": "^2.0.2",
"gatsby-plugin-typography": "^1.7.18",
"gatsby-remark-autolink-headers": "^1.4.3",
"gatsby-remark-copy-linked-files": "^1.5.1",
"gatsby-remark-images": "^1.5.3",
"gatsby-remark-prismjs": "^1.2.0",
"gatsby-source-filesystem": "^1.4.2",
"gatsby-transformer-remark": "^1.7.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.1.3",
"react-lottie": "^1.1.0",
"styled-components": "^3.1.6",
"typography-theme-ocean-beach": "^0.15.11"
},
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.11.1",
"remark-cli": "^5.0.0",
"remark-frontmatter": "^1.2.0",
"remark-preset-lint-markdown-style-guide": "^2.1.1",
"stylelint": "^9.1.1",
"stylelint-config-standard": "^18.2.0",
"write-good": "^0.11.3"
},
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"serve-build": "gatsby serve",
"test": "yarn lint:js && yarn lint:md",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark . -f",
"format": "eslint . --ext .js,.jsx --fix && remark . -o",
"write-good": "write-good content/**/*.md"
},
"remarkConfig": {
"plugins": [
"remark-frontmatter",
"remark-preset-lint-markdown-style-guide",
[
"remark-lint-maximum-line-length",
false
],
[
"remark-lint-emphasis-marker",
"_"
]
]
}
}