This repository was archived by the owner on Feb 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.63 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.63 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "masterborn-blog",
"private": false,
"description": "MasterBorn Blog",
"author": "MasterBorn (https://github.com/masterborn/)",
"contributors": [
"Łukasz Miedziński"
],
"version": "0.0.1",
"license": "Apache License 2.0",
"main": "n/a",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve --prefix-paths",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"format": "prettier --write src/**/*.{js,jsx}",
"clean": "gatsby clean"
},
"dependencies": {
"@emotion/is-prop-valid": "^0.8.8",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@masterborn/eslint-config": "^0.0.13",
"@mdx-js/loader": "^1.5.7",
"@mdx-js/mdx": "^1.5.7",
"@mdx-js/react": "^1.5.7",
"@n8tb1t/use-scroll-position": "^1.0.43",
"@styled-icons/fa-solid": "^10.32.0",
"@svgr/webpack": "^5.3.1",
"ajv": "6.12.3",
"ajv-errors": "1.0.1",
"algoliasearch": "^4.9.1",
"axios": "0.18.1",
"body-scroll-lock": "^2.7.1",
"dotenv": "^8.5.1",
"emotion": "^11.0.0",
"emotion-icons": "1.0.0",
"express-graphql": "^0.12.0",
"gatsby": "3.4.1",
"gatsby-cli": "3.4.1",
"gatsby-plugin-algolia": "^0.18.0",
"gatsby-plugin-canonical-urls": "3.5.0",
"gatsby-plugin-emotion": "^6.4.0",
"gatsby-plugin-facebook-pixel": "1.0.5",
"gatsby-plugin-google-fonts": "1.0.1",
"gatsby-plugin-google-gtag": "3.14.0",
"gatsby-plugin-google-tagmanager": "3.5.0",
"gatsby-plugin-image": "^1.4.0",
"gatsby-plugin-layout": "^2.4.0",
"gatsby-plugin-mdx": "^2.4.0",
"gatsby-plugin-page-creator": "^3.4.1",
"gatsby-plugin-react-helmet": "^4.4.0",
"gatsby-plugin-sharp": "^3.4.1",
"gatsby-plugin-sitemap": "^4.0.0",
"gatsby-plugin-styled-components": "^4.4.0",
"gatsby-plugin-svgr": "^3.0.0-beta.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-copy-linked-files": "^4.1.0",
"gatsby-remark-images": "^5.1.0",
"gatsby-remark-related-posts": "^1.0.2",
"gatsby-source-filesystem": "^3.4.0",
"gatsby-transformer-remark": "^4.1.0",
"gatsby-transformer-sharp": "^3.4.0",
"graphql": "^15.5.0",
"is-absolute-url": "^3.0.3",
"lodash": "^4.17.15",
"polished": "^3.4.4",
"prism-react-renderer": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-emotion": "^10.0.0",
"react-focus-lock": "^2.2.1",
"react-helmet": "^5.2.1",
"react-instantsearch-dom": "^6.11.0",
"react-lines-ellipsis": "^0.14.1",
"react-paginate": "^7.1.2",
"react-scrollbars-custom": "^4.0.21",
"react-share": "^4.1.0",
"react-spring": "^8.0.27",
"remark-slug": "^6.0.0",
"resize-observer": "^1.0.0",
"styled-components": "^5.3.0",
"styled-system": "^5.1.5",
"use-is-in-viewport": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint": "^7.25.0",
"babel-eslint": "10.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"gatsby-plugin-remove-trailing-slashes": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.1.2",
"husky": "^4.2.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"overrides": {
"webpack": "5.52.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --cache --fix",
"prettier --write"
]
}
}