-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
83 lines (83 loc) · 2.31 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
{
"name": "delta-lake",
"version": "1.0.0",
"private": true,
"description": "Delta Lake",
"author": "Jake Bellacera",
"keywords": [
"gatsby"
],
"engines": {
"node": ">=18.0.0",
"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.3",
"axios": "^1.3.5",
"babel-plugin-styled-components": "2.0.7",
"bootstrap": "5.2.2",
"color": "4.2.3",
"dotenv": "^16.0.3",
"gatsby": "5.13.6",
"gatsby-plugin-anchor-links": "1.2.1",
"gatsby-plugin-google-fonts": "1.0.1",
"gatsby-plugin-google-gtag": "5.13.1",
"gatsby-plugin-image": "3.13.1",
"gatsby-plugin-local-search": "2.0.1",
"gatsby-plugin-manifest": "5.13.1",
"gatsby-plugin-mdx": "5.13.1",
"gatsby-plugin-sharp": "5.13.1",
"gatsby-plugin-sitemap": "6.13.1",
"gatsby-plugin-styled-components": "6.13.1",
"gatsby-remark-copy-linked-files": "6.13.1",
"gatsby-remark-images": "7.13.1",
"gatsby-source-filesystem": "5.13.1",
"gatsby-transformer-json": "5.13.1",
"gatsby-transformer-sharp": "5.13.1",
"highlight.js": "11.6.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-bootstrap": "2.5.0",
"react-dom": "18.2.0",
"react-is": "18.2.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",
"swiper": "^8.4.7"
},
"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",
"gatsby-plugin-netlify": "5.1.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1"
}
}