- Added `prop-types` for better prop validation in components. - Introduced `CurrencyProvider` to manage currency context and preload exchange rates. - Updated pricing logic in various components to support new price structure and display currency. - Refactored BOMSummary, MotorStep, and PowerSupplyStep to utilize new pricing methods and improve user experience. - Enhanced export utilities to format prices correctly in markdown and Excel outputs. - Updated hardware and component data structures to include detailed pricing information.
40 lines
956 B
JSON
40 lines
956 B
JSON
{
|
|
"name": "ossm-configurator",
|
|
"private": true,
|
|
"version": "0.0.1-beta",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"lint": "eslint . --max-warnings 0",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"exceljs": "^4.4.0",
|
|
"jszip": "^3.10.1",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"autoprefixer": "^10.4.20",
|
|
"eslint": "^9.39.2",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-refresh": "^0.4.26",
|
|
"globals": "^17.0.0",
|
|
"postcss": "^8.4.41",
|
|
"tailwindcss": "^3.4.9",
|
|
"vite": "^7.3.0"
|
|
},
|
|
"overrides": {
|
|
"glob": "^9.0.0",
|
|
"rimraf": "^5.0.0",
|
|
"inflight": "npm:@jsdevtools/inflight@^1.0.6"
|
|
}
|
|
}
|