-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.9 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": "blog",
"private": true,
"description": "My personal site and some random thoughts about software development",
"version": "0.1.0",
"author": "Bruno Arueira <contato@brunoarueira.com>",
"bugs": {
"url": "https://github.com/brunoarueira/blog/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/free-brands-svg-icons": "6.5.1",
"@fortawesome/free-solid-svg-icons": "6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mdx-js/react": "^3.0.0",
"babel-plugin-styled-components": "^2.1.4",
"babel-preset-gatsby": "^3.0.0",
"gatsby": "^5.0.0",
"gatsby-plugin-catch-links": "^5.0.0",
"gatsby-plugin-disqus": "^1.2.0",
"gatsby-plugin-feed": "^5.0.0",
"gatsby-plugin-manifest": "^5.0.0",
"gatsby-plugin-mdx": "^5.0.0",
"gatsby-plugin-offline": "^6.0.0",
"gatsby-plugin-postcss": "^6.0.0",
"gatsby-plugin-purgecss": "^6.0.0",
"gatsby-plugin-react-helmet": "^6.0.0",
"gatsby-plugin-sharp": "^5.0.0",
"gatsby-plugin-sitemap": "^6.0.0",
"gatsby-plugin-styled-components": "^6.0.0",
"gatsby-remark-copy-linked-files": "^6.0.0",
"gatsby-remark-images": "^7.0.0",
"gatsby-remark-responsive-iframe": "^6.0.0",
"gatsby-remark-smartypants": "^6.0.0",
"gatsby-remark-social-image": "1.1.0",
"gatsby-remark-unwrap-images": "1.0.2",
"gatsby-source-filesystem": "^5.0.0",
"gatsby-transformer-sharp": "^5.0.0",
"postcss-import": "^16.0.0",
"postcss-preset-env": "^9.0.0",
"prism-react-renderer": "^2.0.0",
"prismjs": "^1.29.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-icons": "^5.0.0",
"react-live": "^4.0.0",
"reading-time": "^1.5.0",
"remark-external-links": "^9.0.1",
"remark-gfm": "^3.0.0",
"styled-components": "^6.0.0",
"stylelint": "^16.0.0",
"twin.macro": "^3.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-syntax-object-rest-spread": "7.8.3",
"babel-plugin-twin": "^1.1.0",
"eslint": "^8.27.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-react": "^7.31.10",
"path-browserify": "^1.0.1",
"prettier": "^3.0.0",
"tailwindcss": "^3.2.4",
"util": "^0.12.5"
},
"license": "MIT",
"main": "n/a",
"scripts": {
"clean": "gatsby clean",
"dev": "gatsby develop -p 8001",
"lint": "eslint --ext .js,.jsx .",
"lint:mdx": "eslint --ext .js,.jsx,.md,.mdx .",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"serve": "yarn build && gatsby serve",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser @babel/eslint-parser --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}