-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 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
{
"name": "rafael.do",
"description": "Rafael Belliard's personal website.",
"version": "1.0.0",
"engines": {
"node": ">=16.0.0"
},
"author": "Rafael Belliard <me@rafael.do>",
"homepage": "https://rafael.do",
"keywords": [
"gatsby"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rebelliard/rebelliard.github.io.git"
},
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b master && npm run clean",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@mdx-js/react": "^2.1.3",
"classnames": "^2.3.1",
"gatsby": "^4.25.4",
"gatsby-plugin-google-analytics": "^5.6.0",
"gatsby-plugin-image": "^2.21.0",
"gatsby-plugin-mdx": "^4.0.0",
"gatsby-plugin-sass": "^5.21.0",
"gatsby-plugin-sharp": "^4.21.0",
"gatsby-plugin-sitemap": "^5.21.0",
"gatsby-source-filesystem": "^4.21.1",
"gatsby-transformer-sharp": "^4.21.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"sass": "^1.54.6",
"typeface-open-sans": "^1.1.13",
"typeface-roboto-slab": "^1.1.13"
},
"devDependencies": {
"@types/node": "^17.0.45",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"gh-pages": "^4.0.0",
"prettier": "^2.7.1",
"typescript": "^4.8.2"
}
}