-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.73 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
{
"name": "ayushgupta.tech",
"description": "Ayush Gupta Portfolio",
"version": "3.5.0",
"author": "Ayush Gupta <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/gupta-ji6/ayushgupta.tech"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"deploy": "gatsby build && gh-pages -d public -b master"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"resolutions": {
"graphql": "15.4.0",
"graphql-compose": "7.25.0",
"webpack": "5.24.2"
},
"dependencies": {
"@github/time-elements": "3.1.2",
"@splitbee/web": "0.2.4",
"animejs": "3.0.1",
"babel-plugin-styled-components": "1.13.2",
"gatsby": "3.14.x",
"gatsby-plugin-catch-links": "3.9.0",
"gatsby-plugin-google-gtag": "3.9.0",
"gatsby-plugin-image": "1.9.0",
"gatsby-plugin-manifest": "3.9.0",
"gatsby-plugin-netlify": "3.9.0",
"gatsby-plugin-nprogress": "3.9.0",
"gatsby-plugin-offline": "4.9.0",
"gatsby-plugin-react-helmet": "4.9.0",
"gatsby-plugin-robots-txt": "1.5.5",
"gatsby-plugin-sharp": "3.9.0",
"gatsby-plugin-sitemap": "4.5.0",
"gatsby-plugin-styled-components": "4.9.0",
"gatsby-remark-copy-linked-files": "4.6.0",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "5.6.0",
"gatsby-remark-prismjs": "5.6.0",
"gatsby-source-filesystem": "3.9.0",
"gatsby-transformer-remark": "4.6.0",
"gatsby-transformer-sharp": "3.9.0",
"lodash": "4.17.21",
"prismjs": "1.27.0",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-hot-toast": "2.0.0",
"react-transition-group": "4.4.5",
"scrollreveal": "4.0.9",
"sharp": "0.31.1",
"styled-components": "5.3.0",
"use-comments": "1.0.1"
},
"devDependencies": {
"@babel/preset-react": "7.14.5",
"@netlify/plugin-gatsby": "1.0.3",
"@upstatement/eslint-config": "1.0.1",
"@upstatement/prettier-config": "1.0.0",
"babel-eslint": "10.0.1",
"babel-preset-gatsby": "1.9.0",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"gatsby-remark-code-titles": "1.1.0",
"gh-pages": "2.0.1",
"husky": "7.0.1",
"lint-staged": "11.0.1",
"prettier": "2.2.1",
"pretty-quick": "3.1.1"
},
"engines": {
"node": "14.16.0"
}
}