-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
113 lines (113 loc) · 3.67 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": "gatsby-simple-blog",
"description": "forked from gatsby-starter-blog with overreacted looking and with tags, breadcrumbs support",
"version": "0.3.0",
"author": "thundermiracle",
"bugs": {
"url": "https://github.com/thundermiracle/gatsby-simple-blog/issues"
},
"dependencies": {
"@styled-icons/fa-solid": "^10.47.0",
"algoliasearch": "^4.14.2",
"disqus-react": "^1.1.3",
"dotenv": "^16.0.3",
"escape-string-regexp": "^4.0.0",
"eslint-webpack-plugin": "^4.0.1",
"gatsby": "^4.24.1",
"gatsby-plugin-algolia": "^1.0.3",
"gatsby-plugin-feed": "^4.25.0",
"gatsby-plugin-google-gtag": "^4.25.0",
"gatsby-plugin-html2amp": "^1.4.2",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-image": "^2.25.0",
"gatsby-plugin-manifest": "^4.25.0",
"gatsby-plugin-offline": "^5.25.0",
"gatsby-plugin-react-helmet": "^5.25.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-styled-components": "^5.25.0",
"gatsby-plugin-typography": "^4.25.0",
"gatsby-remark-autolink-headers": "^5.24.0",
"gatsby-remark-copy-linked-files": "^5.24.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^6.24.0",
"gatsby-remark-prismjs": "^6.24.0",
"gatsby-remark-prismjs-copy-button": "^0.3.1",
"gatsby-remark-responsive-iframe": "^5.24.0",
"gatsby-remark-smartypants": "^5.24.0",
"gatsby-source-filesystem": "^4.24.0",
"gatsby-transformer-remark": "^5.24.0",
"gatsby-transformer-sharp": "^4.24.0",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-instantsearch-dom": "^6.35.0",
"react-typography": "^0.16.20",
"styled-components": "^5.3.6",
"typeface-merriweather": "1.1.13",
"typeface-montserrat": "1.1.13",
"typography": "^0.16.21",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@types/jest": "^29.5.3",
"babel-jest": "^29.1.2",
"babel-plugin-import": "^1.13.5",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-gatsby": "^2.24.0",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.9.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-plugin-eslint": "^4.0.2",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"prettier": "^3.0.0"
},
"resolutions": {
"sharp": "^0.31.1",
"webpack": "^5.74.0"
},
"homepage": "https://thundermiracle.github.io/gatsby-simple-blog",
"keywords": [
"gatsbyjs",
"starter",
"blog",
"tag",
"eslint",
"breadcrumbs",
"overreacted"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/thundermiracle/gatsby-simple-blog.git"
},
"scripts": {
"build": "gatsby build",
"build:gh": "gatsby build --prefix-paths",
"dev": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "yarn run dev",
"serve": "gatsby serve",
"serve:gh": "gatsby serve --prefix-paths",
"eslint": "eslint .",
"jest": "jest",
"test": "cross-env NODE_ENV=test yarn run eslint && cross-env NODE_ENV=test yarn run jest",
"clean": "gatsby clean"
}
}