-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.12 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
{
"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",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby build && gh-pages -d public -b gh-pages",
"prepare": "husky install",
"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.15.0",
"gatsby-plugin-google-gtag": "^5.15.0",
"gatsby-plugin-manifest": "^5.15.0",
"gatsby-remark-prismjs": "^7.15.0",
"gatsby-source-filesystem": "^5.15.0",
"gatsby-transformer-remark": "^6.15.0",
"normalize.css": "^8.0.1",
"prismjs": "^1.30.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"styled-breakpoints": "^14.1.5"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/react-helmet": "^6.1.11",
"@types/styled-components": "^5.1.36",
"babel-plugin-styled-components": "^2.1.4",
"gatsby-cli": "^5.15.0",
"gatsby-plugin-styled-components": "^6.15.0",
"gatsby-plugin-typescript": "^5.15.0",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"inquirer": "^13.1.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"shorted-theme": "^0.1.1",
"styled-components": "^6.1.19",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"untoken": "^0.0.2",
"yargs-parser": "^22.0.0"
},
"overrides": {
"react-server-dom-webpack@0.0.0-experimental-c8b778b7f-20220825": {
"react": "^18.0.0"
}
},
"lint-staged": {
"*.{ts,tsx,js,md}": "prettier --write"
}
}