-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.34 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.34 KB
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": "@rmariuzzo/mariuzzo.com",
"version": "0.0.0",
"description": "The mariuzzo.com web site.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mariuzzo/mariuzzo.github.com.git"
},
"author": "Rubens Mariuzzo <rubens@mariuzzo.com>",
"license": "SEE LICENSE IN ./LICENSE",
"bugs": {
"url": "https://github.com/mariuzzo/mariuzzo.github.com/issues"
},
"homepage": "https://github.com/mariuzzo/mariuzzo.github.com#readme",
"scripts": {
"dev": "gatsby develop",
"start": "gatsby develop",
"generate-og": "tsx ./scripts/generate-og-images.tsx",
"build": "npm run generate-og && gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "npm run generate-og && gatsby build && gh-pages -d public -b gh-pages",
"prepare": "husky",
"new-post": "ts-node ./scripts/new-post.ts"
},
"dependencies": {
"@fontsource/source-code-pro": "^5.2.7",
"@fontsource/source-sans-pro": "^5.2.5",
"date-fns": "^4.1.0",
"gatsby": "^5.16.1",
"gatsby-plugin-google-gtag": "^5.16.0",
"gatsby-plugin-manifest": "^5.16.0",
"gatsby-remark-prismjs": "^7.16.0",
"gatsby-source-filesystem": "^5.16.0",
"gatsby-transformer-remark": "^6.16.0",
"normalize.css": "^8.0.1",
"prismjs": "^1.30.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-helmet": "^6.1.0",
"styled-breakpoints": "^14.2.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^25.6.2",
"@types/react-helmet": "^6.1.11",
"@types/styled-components": "^5.1.36",
"babel-plugin-styled-components": "^2.1.4",
"gatsby-cli": "^5.16.0",
"gatsby-plugin-styled-components": "^6.16.0",
"gatsby-plugin-typescript": "^5.16.0",
"gh-pages": "^6.3.0",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"inquirer": "^13.4.2",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"satori": "^0.26.0",
"sharp": "^0.34.5",
"shorted-theme": "^0.1.1",
"styled-components": "^6.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"untoken": "^0.0.2",
"yargs-parser": "^22.0.0"
},
"overrides": {
"react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825": {
"react": "^19.2.6"
}
},
"lint-staged": {
"*.{ts,tsx,js,md}": "prettier --write"
}
}