prospector/web/package.json
Natalie 0558881d9c
Some checks failed
CI/CD / verify (push) Failing after 3s
CI/CD / deploy (push) Has been skipped
chore(web): drop unused @cocotte/ui-fab/ui-icons/ui-zname dependencies
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>
2026-07-01 10:19:52 -04:00

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"
}
}