This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 364
/
package.json
114 lines (114 loc) · 3.89 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "developer-community-stats",
"private": false,
"description": "A repository to encourage beginners to contribute to open source and for all contributors to view their Github stats.",
"version": "0.1.0",
"author": "Developer Community Stats <[email protected]>",
"bugs": {
"url": "https://github.com/subeshb1/developer-community-stats/issues"
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.1.0",
"@mdx-js/react": "^1.0.27",
"@mdx-js/tag": "^0.20.3",
"@popperjs/core": "^2.4.0",
"ansi_up": "^4.0.4",
"antd": "^4.2.4",
"change-case": "^3.1.0",
"disqus-react": "^1.0.6",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"flag-icon-css": "^3.5.0",
"gatsby": "^2.24.83",
"gatsby-image": "^2.0.22",
"gatsby-mdx": "^0.6.3",
"gatsby-plugin-advanced-sitemap": "^1.5.5",
"gatsby-plugin-emotion": "^4.1.2",
"gatsby-plugin-feed": "^2.0.8",
"gatsby-plugin-google-analytics": "^2.0.5",
"gatsby-plugin-html-attributes": "^1.0.5",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-nprogress": "^2.1.2",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sass": "^2.1.3",
"gatsby-plugin-sharp": "^2.0.6",
"gatsby-plugin-sitemap": "^2.4.5",
"gatsby-plugin-transition-link": "^1.12.4",
"gatsby-plugin-typography": "^2.2.0",
"gatsby-remark-autolink-headers": "^2.1.3",
"gatsby-remark-copy-linked-files": "^2.3.3",
"gatsby-remark-images": "^3.1.7",
"gatsby-remark-prismjs": "^3.3.3",
"gatsby-remark-reading-time": "^1.0.1",
"gatsby-remark-responsive-iframe": "^2.0.5",
"gatsby-remark-series": "^1.0.1",
"gatsby-remark-smartypants": "^2.0.5",
"gatsby-remark-vscode": "^2.1.2",
"gatsby-source-filesystem": "^2.0.2",
"gatsby-transformer-remark": "^2.6.9",
"gatsby-transformer-sharp": "^2.1.3",
"gsap": "^3.2.6",
"jest": "^26.4.2",
"mdx-utils": "^0.2.0",
"moment": "^2.27.0",
"nepali-date-converter": "^3.3.0",
"node-sass": "^4.12.0",
"prism-react-renderer": "^0.1.5",
"prism-themes": "^1.1.0",
"prismjs": "^1.16.0",
"react": "^16.13.1",
"react-color": "^2.18.1",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.2",
"react-helmet": "^5.2.0",
"react-icons": "^3.10.0",
"react-laag": "^1.7.3",
"react-live": "^2.1.2",
"react-popper": "^2.2.3",
"react-redux": "^7.2.0",
"react-sticky": "^6.0.3",
"react-typography": "^0.16.13",
"react-use": "^15.1.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"synthwave-vscode": "github:robb0wen/synthwave-vscode",
"typeface-ibm-plex-mono": "^0.0.61",
"typeface-inconsolata": "^0.0.72",
"typeface-libre-baskerville": "^0.0.72",
"typeface-lora": "^0.0.72",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typography": "^0.16.17",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.14.2"
},
"homepage": "subeshbhandari.com",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/subeshb1/subeshbhandari.com"
},
"scripts": {
"dev": "gatsby develop",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "jest ./specs",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}