-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "personal-site",
"version": "1.0.0",
"private": true,
"description": "Personal Site",
"author": "SNikhill",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop -H 0.0.0.0 -p 8000",
"start": "gatsby develop -H 0.0.0.0 -p 8000",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"prepare": "husky install"
},
"dependencies": {
"gatsby": "^4.12.1",
"gatsby-plugin-gatsby-cloud": "^4.12.1",
"gatsby-plugin-image": "^2.12.1",
"gatsby-plugin-nprogress": "^4.12.1",
"gatsby-plugin-react-helmet": "^5.12.1",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-robots-txt": "^1.7.1",
"gatsby-plugin-sass": "^5.12.1",
"gatsby-plugin-sharp": "^4.13.0",
"gatsby-plugin-sitemap": "^5.12.1",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images-anywhere": "^1.3.1",
"gatsby-remark-prismjs": "^6.12.1",
"gatsby-source-datocms": "^4.0.1",
"gatsby-source-filesystem": "^4.12.1",
"gatsby-transformer-remark": "^5.12.1",
"gatsby-transformer-sharp": "^4.12.1",
"lodash": "^4.17.21",
"prismjs": "^1.28.0",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-datocms": "^3.0.12",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"prettier": "2.6.2",
"sass": "^1.50.1"
},
"lint-staged": {
"*.{jsx,js,scss,md}": [
"eslint --cache --fix",
"prettier --write"
]
}
}