-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.05 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "marcodcellamare.github.io",
"private": false,
"version": "2025.2.8",
"repository": {
"url": "https://github.com/marcodcellamare/marcodcellamare.github.io.git"
},
"author": {
"name": "Marco D. Cellamare",
"email": "md.cellamare@gmail.com",
"url": "https://github.com/marcodcellamare/"
},
"license": "UNLICENSED",
"created": "2025-02-13",
"type": "module",
"scripts": {
"tool:optimize.images": "tsx --tsconfig tsconfig.node.json ./src/tools/optimize.images.ts",
"tool:sitemap.generator": "tsx --tsconfig tsconfig.node.json ./src/tools/sitemap.generator.ts",
"tool:robots.generator": "tsx --tsconfig tsconfig.node.json ./src/tools/robots.generator.ts",
"tools": "npm run tool:optimize.images && npm run prebuild",
"dev": "vite",
"dev:host": "vite --host",
"lint": "eslint ./src",
"test:vitest": "vitest",
"test:vitest:coverage": "vitest run --coverage",
"test:playwright": "playwright test",
"test:playwright:ui": "playwright test --ui",
"test:playwright:report": "playwright show-report",
"test:all": "npm run test:vitest && npm run test:playwright",
"prebuild": "npm run tool:sitemap.generator && npm run tool:robots.generator",
"build": "tsc -b && vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@georgedoescode/spline": "^1.0.1",
"classnames": "^2.5.1",
"culori": "^4.0.1",
"firebase": "^12.0.0",
"i18next": "^25.0.0",
"i18next-browser-languagedetector": "^8.0.2",
"lucide-react": "^0.544.0",
"motion": "^12.15.0",
"react": "^19.1.0",
"react-bootstrap-icons": "^1.11.6",
"react-dom": "^19.1.0",
"react-i18next": "^16.0.0",
"react-router": "^7.8.0",
"simplex-noise": "^4.0.3",
"uuid": "^13.0.0",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@playwright/test": "^1.54.2",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.6",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/culori": "^4.0.0",
"@types/node": "^24.2.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitejs/plugin-react-swc": "^4.0.0",
"daisyui": "^5.0.0-beta.7",
"dotenv": "^17.2.0",
"eslint": "^9.25.0",
"eslint-import-resolver-typescript": "^4.2.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"gh-pages": "^6.3.0",
"globals": "^16.0.0",
"jsdom": "^27.0.0",
"rollup-plugin-visualizer": "^6.0.0",
"sharp": "^0.34.3",
"svgo": "^4.0.0",
"tailwindcss": "^4.1.11",
"terser": "^5.39.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.30.1",
"vite": "^7.0.0",
"vite-plugin-pwa": "^1.0.2",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}