-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "personal_site",
"version": "1.0.0",
"private": true,
"type": "module",
"homepage": "https://portfolio.juan-alvarez.dev",
"scripts": {
"build": "rsbuild build",
"check": "biome check --write",
"dev": "rsbuild dev --env-mode development --open",
"prod": "rsbuild prod --env-mode production --open",
"format": "prettier --write .",
"lint": "eslint .",
"preview": "rsbuild preview",
"deploy": "echo -n 'portfolio.juan-alvarez.dev' > ./dist/CNAME && gh-pages -d dist"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@formspree/react": "^3.0.0",
"@mui/icons-material": "^7.1.0",
"@mui/lab": "^7.0.0-beta.12",
"@mui/material": "^7.1.0",
"axios": "^1.9.0",
"date-fns": "^4.1.0",
"gh-pages": "^6.3.0",
"poisson-disk-sampling": "^2.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.8.2",
"recharts": "^2.15.3",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.23.0",
"@rsbuild/core": "^1.3.1",
"@rsbuild/plugin-react": "^1.1.1",
"eslint": "^9.23.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"prettier": "^3.5.3"
}
}