-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.47 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
{
"name": "blog-perso",
"version": "1.0.0",
"description": "Code for my personal Blog",
"author": "Bruno Alla <[email protected]>",
"license": "MIT",
"repository": "https://github.com/browniebroke/browniebroke.com.git",
"homepage": "https://browniebroke.com",
"dependencies": {
"@chakra-ui/gatsby-plugin": "3.1.3",
"@chakra-ui/react": "2.10.4",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@fontsource/cabin-condensed": "5.1.0",
"@fontsource/patua-one": "5.1.0",
"framer-motion": "11.15.0",
"gatsby": "5.14.1",
"gatsby-plugin-csp": "1.1.4",
"gatsby-plugin-feed": "5.14.0",
"gatsby-plugin-google-gtag": "5.14.0",
"gatsby-plugin-image": "3.14.0",
"gatsby-plugin-manifest": "5.14.0",
"gatsby-plugin-mdx": "5.14.0",
"gatsby-plugin-netlify": "5.1.1",
"gatsby-plugin-offline": "6.14.0",
"gatsby-plugin-react-helmet": "6.14.0",
"gatsby-plugin-robots-txt": "1.8.0",
"gatsby-plugin-sharp": "5.14.0",
"gatsby-plugin-sitemap": "6.14.0",
"gatsby-plugin-typescript": "5.14.0",
"gatsby-remark-images": "7.14.0",
"gatsby-remark-prismjs": "7.14.0",
"gatsby-remark-smartypants": "6.14.0",
"gatsby-source-filesystem": "5.14.0",
"gatsby-transformer-sharp": "5.14.0",
"htmlparser2": "9.1.0",
"prismjs": "1.29.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-icons": "5.4.0",
"reading-time": "1.5.0",
"remark-external-links": "8.0.0",
"replace-in-file": "8.3.0",
"slugify": "1.6.6",
"typescript": "5.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@types/node": "22.10.2",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react-helmet": "6.1.11",
"@typescript-eslint/parser": "8.18.2",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"prettier": "3.4.2"
},
"scripts": {
"build": "gatsby build && node ./csp-util.mjs",
"clean": "rm -rf .cache public node_modules",
"develop": "gatsby develop",
"serve": "gatsby serve",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc",
"format": "prettier --write ."
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"renovate": {
"extends": [
"github>browniebroke/renovate-configs:js-app"
]
}
}