-
Notifications
You must be signed in to change notification settings - Fork 171
/
package.json
81 lines (81 loc) · 2.27 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
{
"name": "v1",
"description": "Personal Website V1",
"version": "1.0.0",
"author": "Yashita Namdeo <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/yashitanamdeo/yashitanamdeo.github.io"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build && gh-pages -d public -b main"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
},
"dependencies": {
"animejs": "^3.1.0",
"babel-plugin-styled-components": "^1.10.6",
"gatsby": "^2.18.7",
"gatsby-image": "^2.2.34",
"gatsby-plugin-google-analytics": "^2.1.29",
"gatsby-plugin-manifest": "^2.2.31",
"gatsby-plugin-netlify": "^2.1.27",
"gatsby-plugin-offline": "^3.0.27",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "^2.3.5",
"gatsby-plugin-sitemap": "^2.2.22",
"gatsby-plugin-styled-components": "^3.1.14",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^3.1.35",
"gatsby-remark-prismjs": "^3.3.25",
"gatsby-source-filesystem": "^2.1.40",
"gatsby-transformer-remark": "^2.6.39",
"gatsby-transformer-sharp": "^2.3.7",
"lodash": "^4.17.15",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-transition-group": "^4.3.0",
"scrollreveal": "^4.0.5",
"smooth-scroll": "^16.1.0",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@upstatement/eslint-config": "0.4.3",
"@upstatement/prettier-config": "^0.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"gatsby-remark-code-titles": "^1.1.0",
"gh-pages": "^3.2.3",
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4"
}
}