This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.17 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.17 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
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
95
96
97
98
99
100
101
{
"name": "transition-link-docs",
"description": "A gatsby site for the TransitionLink docs using Wordsby.",
"version": "0.0.1",
"author": "Tyler Barnes <tylerdbarnes@gmail.com>",
"dependencies": {
"babel-plugin-styled-components": "^1.10.6",
"clipboard": "^2.0.4",
"emotion-server": "^9.2.12",
"gatsby": "2.17.7",
"gatsby-image": "2.2.30",
"gatsby-plugin-catch-links": "2.1.15",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-google-analytics": "2.1.23",
"gatsby-plugin-google-fonts": "^0.0.4",
"gatsby-plugin-netlify": "^2.1.23",
"gatsby-plugin-netlify-cache": "^1.2.0",
"gatsby-plugin-nprogress": "2.1.12",
"gatsby-plugin-offline": "2.0.23",
"gatsby-plugin-react-helmet": "3.1.13",
"gatsby-plugin-react-svg": "^2.1.2",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sharp": "2.2.36",
"gatsby-plugin-sitemap": "2.2.19",
"gatsby-plugin-styled-components": "^3.1.11",
"gatsby-plugin-transition-link": "^1.14.2",
"gatsby-plugin-wordsby": "^0.0.5",
"gatsby-source-filesystem": "2.1.35",
"gatsby-transformer-sharp": "^2.3.2",
"gsap": "^2.1.3",
"html-react-parser": "^0.4.7",
"lodash.camelcase": "^4.3.0",
"logrocket": "^0.6.19",
"minireset.css": "^0.0.3",
"prismjs": "^1.15.0",
"react": "^16.11.0",
"react-copy-text": "^1.0.1",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"rehype-document": "^3.0.1",
"rehype-format": "^2.3.1",
"rehype-slug": "^2.0.3",
"rehype-stringify": "^5.0.0",
"remark": "^10.0.1",
"remark-parse": "^6.0.3",
"remark-react": "^4.0.3",
"remark-rehype": "^4.0.0",
"remark-syntax-highlight": "^0.1.3",
"smooth-scroll": "^15.0.0",
"styled-components": "^4.1.3",
"styled-components-grid": "^2.2.2",
"styled-components-spacing": "^3.1.1",
"tyjs": "^0.0.2",
"unified": "^7.0.2",
"unified-stream": "^1.0.5",
"wordsby": "0.4.5",
"wordsby-components": "^0.0.14"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.6.1",
"prettier": "^1.14.3",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"stylefmt": "^6.0.3",
"stylelint": "^9.7.1",
"stylelint-config-standard": "^18.0.0",
"write-good": "^0.13.1"
},
"keywords": [
"gatsby",
"gatsby site",
"gatsby-plugin-transition-link",
"documentation"
],
"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/posts/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}