-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
113 lines (113 loc) · 3.6 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "paigeniedringhaus.com",
"description": "Personal website of Paige Niedringhaus running on Gatsby and React",
"version": "1.1.0",
"author": "Paige Niedringhaus <[email protected]>",
"repository": "https://github.com/paigen11/paigeniedringhaus.com.git",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"classnames": "^2.2.6",
"gatsby": "4.13.1",
"gatsby-cli": "4.13.0",
"gatsby-plugin-catch-links": "4.13.0",
"gatsby-plugin-feed": "4.13.0",
"gatsby-plugin-google-analytics": "4.13.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-gtag": "4.13.0",
"gatsby-plugin-image": "2.13.0",
"gatsby-plugin-lodash": "5.13.0",
"gatsby-plugin-mailgo": "0.12.2",
"gatsby-plugin-manifest": "4.13.0",
"gatsby-plugin-nprogress": "4.13.0",
"gatsby-plugin-offline": "5.13.0",
"gatsby-plugin-react-helmet": "5.13.0",
"gatsby-plugin-react-helmet-canonical-urls": "1.4.0",
"gatsby-plugin-sass": "5.12.1",
"gatsby-plugin-sharp": "4.13.0",
"gatsby-plugin-sitemap": "5.13.0",
"gatsby-plugin-twitter": "4.13.0",
"gatsby-remark-autolink-headers": "5.13.0",
"gatsby-remark-code-titles": "1.1.0",
"gatsby-remark-codepen": "0.1.1",
"gatsby-remark-copy-linked-files": "5.13.0",
"gatsby-remark-embed-video": "3.1.1",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "6.13.0",
"gatsby-remark-prismjs": "6.13.0",
"gatsby-remark-relative-images": "2.0.2",
"gatsby-remark-responsive-iframe": "5.13.0",
"gatsby-source-filesystem": "4.13.0",
"gatsby-transformer-remark": "5.13.0",
"gatsby-transformer-sharp": "4.13.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"prismjs": "^1.22.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-headroom": "3.2.1",
"react-helmet": "6.1.0",
"react-share": "5.1.0",
"react-twitter-widgets": "^1.11.0",
"sass": "^1.80.3",
"url-join": "^4.0.0"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.19.0",
"gatsby-plugin-netlify": "^4.3.1",
"gh-pages": "^3.2.3",
"prettier": "^2.0.2",
"remark-cli": "^10.0.1",
"remark-preset-lint-recommended": "^6.1.2",
"stylelint": "^14.8.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"write-good": "^1.0.1"
},
"keywords": [
"paige niedringhaus",
"development",
"dev",
"tech",
"articles",
"blog",
"developer",
"frontend",
"react",
"gatsby",
"web development"
],
"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"
]
},
"volta": {
"node": "16.0.0",
"yarn": "1.22.17"
}
}