-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 5.12 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 5.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "copy-of-khalil-charfi---portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"sideEffects": [
"*.css",
"index.tsx",
"src/i18n.ts"
],
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/copy-assets.js && node scripts/generate-sitemap.js",
"build:dev": "vite build --mode development && node scripts/copy-assets.js && node scripts/generate-sitemap.js",
"build:prod": "vite build --mode production && node scripts/copy-assets.js && node scripts/generate-sitemap.js",
"build:prod:debug": "VITE_NO_MINIFY=true vite build --mode production && node scripts/copy-assets.js && node scripts/generate-sitemap.js",
"build:analyze": "vite build && open dist/bundle-analysis.html",
"preview": "vite preview",
"preview:prod": "vite preview --mode production",
"clean": "node scripts/cleanup.mjs",
"deploy:verify": "node scripts/verify-deployment.js",
"deploy:manual": "bash scripts/deploy-manual.sh",
"i18n:validate": "node scripts/validate-translations.js",
"i18n:fix-missing": "node scripts/fix-missing-translations.js",
"i18n:complete": "node scripts/complete-translations.js",
"i18n:check": "npm run i18n:validate && npm run i18n:fix-missing",
"i18n:scan": "i18n-check",
"i18n:validate-json": "node scripts/validate-json-translations.js",
"perf:audit": "npm run preview & sleep 3 && lighthouse http://localhost:5177 --output html --output-path ./dist/lighthouse-report.html --view",
"perf:monitor": "node scripts/performance-monitor.js",
"perf:report": "npm run build:analyze && npm run perf:audit",
"optimize": "npm run build:prod && npm run build:analyze",
"test:a11y": "node scripts/test-accessibility.cjs",
"test:a11y:ci": "node scripts/test-ci-accessibility.cjs",
"test:a11y:lighthouse": "lighthouse http://localhost:5181 --only-categories=accessibility --output html --output-path ./test-results/lighthouse-a11y.html --view",
"test:a11y:quick": "lighthouse http://localhost:5181 --only-categories=accessibility --quiet",
"test:playwright": "playwright test",
"test:playwright:ui": "playwright test --ui",
"test:playwright:debug": "playwright test --debug",
"test:playwright:headed": "playwright test --headed",
"test:playwright:chromium": "playwright test --project=chromium",
"test:playwright:firefox": "playwright test --project=firefox",
"test:playwright:webkit": "playwright test --project=webkit",
"test:playwright:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
"test:playwright:report": "playwright show-report test-results/playwright-report",
"test:all": "npm run test:a11y && npm run test:playwright",
"test:no-js": "bash scripts/test-no-js.sh",
"ci:validate-translations": "npm run i18n:validate",
"ci:bundle-size": "npm run build && node scripts/check-bundle-size.js",
"ci:build": "npm run build:prod && node scripts/verify-build.js && npm run verify:debug-exclusion",
"ci:test": "npm run ci:validate-translations && npm run ci:bundle-size",
"ci:all": "npm run ci:validate-translations && npm run ci:build && npm run ci:bundle-size",
"analyze:bundle": "npm run build && node scripts/analyze-bundle.js",
"verify:debug-exclusion": "node scripts/verify-debug-exclusion.js",
"hooks:setup": "bash scripts/setup-git-hooks.sh",
"hooks:remove": "rm -f .git/hooks/pre-commit .git/hooks/pre-push && echo '✅ Git hooks removed'",
"postinstall": "bash scripts/setup-git-hooks.sh 2>/dev/null || true",
"seo:generate": "node scripts/generate-sitemap.js",
"seo:validate": "node scripts/seo-validator.js",
"seo:check": "npm run seo:generate && npm run seo:validate",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@google/genai": "latest",
"@react-three/drei": "9.107.0",
"@react-three/fiber": "8.16.8",
"@react-three/postprocessing": "2.17.0",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "8.0.0",
"marked": "12.0.2",
"postprocessing": "6.35.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-consent": "^3.5.3",
"react-i18next": "14.1.2",
"simplex-noise": "^4.0.3",
"three": "0.165.0",
"vanilla-cookieconsent": "^3.1.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@axe-core/puppeteer": "^4.10.2",
"@lingual/i18n-check": "^0.8.9",
"@playwright/test": "^1.55.1",
"@storybook/addon-a11y": "^9.1.10",
"@storybook/addon-docs": "^9.1.10",
"@storybook/addon-onboarding": "^9.1.10",
"@storybook/react-vite": "^9.1.10",
"@types/node": "^22.14.0",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@wasm-tool/wasm-pack-plugin": "^1.7.0",
"glob": "^11.0.3",
"lighthouse": "^12.8.2",
"playwright": "^1.55.1",
"puppeteer": "^24.23.0",
"rollup-plugin-visualizer": "^6.0.3",
"storybook": "^9.1.10",
"terser": "^5.44.0",
"tsx": "^4.20.6",
"typescript": "~5.7.2",
"vite": "^6.2.0",
"vitest": "^3.2.4",
"wasm-pack": "^0.0.0"
}
}