This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
79 lines (79 loc) · 2.18 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
{
"name": "delta-docs",
"version": "1.0.0",
"private": true,
"description": "delta-docs",
"author": "Jake Bellacera",
"keywords": [
"gatsby"
],
"engines": {
"node": "18.x",
"npm": "8.x"
},
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint \"**/*.{js,jsx}\" && prettier --check .",
"lint:fix": "eslint \"**/*.{js,jsx}\" --fix && prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
],
"**/*.jsx?": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@mdx-js/react": "2.1.5",
"babel-plugin-styled-components": "2.0.7",
"bootstrap": "5.2.2",
"color": "4.2.3",
"gatsby": "5.0.1",
"gatsby-plugin-anchor-links": "1.2.1",
"gatsby-plugin-google-fonts": "1.0.1",
"gatsby-plugin-google-gtag": "5.0.0",
"gatsby-plugin-image": "3.0.0",
"gatsby-plugin-local-search": "2.0.1",
"gatsby-plugin-manifest": "5.0.0",
"gatsby-plugin-mdx": "5.0.0",
"gatsby-plugin-sharp": "5.0.0",
"gatsby-plugin-sitemap": "6.0.0",
"gatsby-plugin-styled-components": "6.0.0",
"gatsby-remark-copy-linked-files": "6.0.0",
"gatsby-remark-images": "7.0.0",
"gatsby-source-filesystem": "5.0.0",
"gatsby-transformer-sharp": "5.0.0",
"highlight.js": "11.6.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-bootstrap": "2.6.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-helmet": "6.1.0",
"react-use-flexsearch": "0.1.1",
"rehype-highlight": "5.0.2",
"rehype-slug": "5.0.1",
"remark-gfm": "1.0.0",
"styled-components": "5.3.6"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1"
}
}