Zero imports anywhere in web/src (confirmed by grep before removal). The prototype's own nav spec uses literal unicode glyphs for icons, and nothing in the design calls for a FAB or z-index-layer system, so these were dead weight since the design-system foundation commit. Removed via `npm install` after dropping them from web/package.json (10 packages removed incl. transitive deps). Typecheck, 387+19 tests, and build all green; verified the app still boots and Control renders correctly. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
32 lines
811 B
JSON
32 lines
811 B
JSON
{
|
|
"name": "@prospector/web",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "NODE_ENV=production vite build",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:smoke": "node test/smoke.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@cocotte/site-themes": "^0.1.1",
|
|
"@cocotte/ui-theme": "^1.5.2",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"styled-components": "^6.3.8"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.1.0",
|
|
"@types/react": "^18.3.12",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"jsdom": "^25.0.1",
|
|
"puppeteer-core": "^23.11.1",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^5.4.11",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|