-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.81 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
{
"name": "blog-georgi-yanev",
"description": "Georgi Yanev's Blog",
"version": "3.0.0",
"author": "Georgi Yanev <georgiyanev.gy@gmail.com>",
"dependencies": {
"@weknow/gatsby-remark-twitter": "^0.2.3",
"babel-plugin-styled-components": "^2.1.4",
"disqus-react": "^1.1.5",
"framer-motion": "^1.11.1",
"gatsby": "^4.4.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-ebook": "^1.0.2",
"gatsby-plugin-feed": "^4.25.0",
"gatsby-plugin-google-analytics": "^4.25.0",
"gatsby-plugin-google-gtag": "4.25.0",
"gatsby-plugin-hotjar": "^1.1.1",
"gatsby-plugin-manifest": "^4.25.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-netlify-cache": "^2.0.0",
"gatsby-plugin-react-helmet": "^5.25.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^5.4.0",
"gatsby-plugin-styled-components": "^5.4.0",
"gatsby-remark-copy-linked-files": "^5.4.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^6.25.0",
"gatsby-remark-prismjs": "^6.4.0",
"gatsby-remark-responsive-iframe": "^5.25.0",
"gatsby-remark-smartypants": "^5.4.0",
"gatsby-source-filesystem": "^4.25.0",
"gatsby-source-youtube-v3": "^3.0.2",
"gatsby-transformer-remark": "^5.25.1",
"gatsby-transformer-sharp": "^4.25.0",
"prismjs": "^1.29.0",
"react": "17.0.2",
"react-burger-menu": "^3.0.9",
"react-collapsible": "^2.10.0",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.12.0",
"react-reveal": "^1.2.2",
"scrollprogress": "^3.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.3"
},
"homepage": "https://github.com/jumpalottahigh/blog.georgi-yanev.com#readme",
"keywords": [
"Georgi Yanev Blog"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/jumpalottahigh/blog.georgi-yanev.com.git"
},
"scripts": {
"clean": "rm -rf .cache && rm -rf public/",
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"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",
"deploy": "gatsby build && netlify deploy --prod"
}
}