-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "eliodinino.com",
"version": "4.0",
"private": true,
"description": "Elio Di Nino's personal website",
"author": "Elio Di Nino",
"homepage": "https://eliodinino.com",
"packageManager": "pnpm@11.1.3",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "cypress run",
"test:visual": "cypress run --spec cypress/e2e/visual.cy.ts",
"test:visual:generate": "pnpm run test:visual --env visualRegressionType=base",
"test:interactive": "cypress open"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/overpass-mono": "^5.2.8",
"@fontsource/roboto": "^5.2.10",
"@matt-block/react-recaptcha-v2": "^2.2.1",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.1.2",
"@plausible-analytics/tracker": "^0.4.5",
"@sentry/react": "^10.62.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-responsive": "^10.0.1",
"react-router": "^8.0.1",
"typeit-react": "^2.7.8",
"typescript": "^6.0.3",
"web-vitals": "^5.3.0"
},
"devDependencies": {
"@sentry/vite-plugin": "^5.3.0",
"@types/node": "^26.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"cypress": "^15.18.0",
"cypress-visual-regression": "^6.0.0",
"prettier": "^3.9.3",
"vite": "^8.1.0",
"vite-plugin-svgr": "^5.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"last 2 versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}