-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.5 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
{
"name": "pedrolamas.com",
"private": true,
"description": "Programming and Tinkering",
"version": "0.1.0",
"author": "Pedro Lamas <pedrolamas@gmail.com>",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"prepare": "husky install",
"lint": "yarn run lint:code && yarn run lint:other",
"lint:code": "yarn run eslint:defaults",
"lint:other": "yarn run prettier:defaults --check",
"format": "yarn run format:code && yarn run format:other",
"format:code": "yarn run eslint:defaults --fix",
"format:other": "yarn run prettier:defaults --write",
"eslint:defaults": "eslint --ext .ts,.tsx,.js,.jsx .",
"prettier:defaults": "prettier \"**/*.{json,md,markdown,css,scss,yaml,yml}\""
},
"lint-staged": {
"*.{json,md,markdown,css,scss,yaml,yml}": [
"prettier --check"
],
"*.{ts,tsx,js,jsx}": [
"eslint"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"disqus-react": "^1.1.5",
"gatsby": "^4.25.7",
"gatsby-plugin-env-variables": "^2.3.0",
"gatsby-plugin-eslint": "^4.0.4",
"gatsby-plugin-feed-generator": "^2.0.5",
"gatsby-plugin-google-gtag": "^4.25.0",
"gatsby-plugin-image": "^2.24.0",
"gatsby-plugin-manifest": "^4.25.0",
"gatsby-plugin-mdx": "^3.20.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-offline": "^5.25.0",
"gatsby-plugin-react-helmet": "^5.25.0",
"gatsby-plugin-robots-txt": "~1.7.1",
"gatsby-plugin-sass": "^5.25.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^5.25.0",
"gatsby-plugin-twitter": "^4.25.0",
"gatsby-remark-acronyms": "^1.2.1",
"gatsby-remark-copy-linked-files": "^5.25.0",
"gatsby-remark-images": "^6.25.0",
"gatsby-remark-responsive-iframe": "^5.25.0",
"gatsby-remark-smartypants": "^5.25.0",
"gatsby-source-filesystem": "^4.25.0",
"gatsby-transformer-sharp": "^4.25.0",
"gatsby-transformer-yaml": "^4.25.0",
"prism-react-renderer": "^1.3.5",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gist": "^1.2.4",
"react-helmet": "^6.1.0",
"react-innertext": "^1.1.5",
"sass": "^1.62.1",
"typeface-pt-sans": "^1.1.13"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-react": "^7.18.6",
"@types/node": "^18.16.3",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-helmet": "^6.1.6",
"@types/underscore.string": "^0.0.38",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18",
"npm": "npm is not supported",
"yarn": ">=1.22"
},
"repository": {
"type": "git",
"url": "https://github.com/pedrolamas/pedrolamas.com"
},
"bugs": {
"url": "https://github.com/pedrolamas/pedrolamas.com/issues"
}
}