- Implemented WarehouseForm.vue for creating new warehouses with form validation and category assignment. - Developed WarehouseIndex.vue for displaying a list of warehouses with search and filter functionalities. - Created warehouseClasificationService.ts for handling warehouse classification API interactions. - Defined types for warehouse classifications in warehouse.clasification.d.ts. - Established a Pinia store (warehouseStore.ts) for managing warehouse state and actions. - Added an index.html file for the warehouse management interface layout.
34 lines
813 B
JSON
34 lines
813 B
JSON
{
|
|
"name": "golscontros-frontend-v1",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@primeuix/themes": "^1.2.5",
|
|
"@primevue/auto-import-resolver": "^4.4.1",
|
|
"@tailwindcss/vite": "^4.1.16",
|
|
"@vueuse/core": "^14.0.0",
|
|
"axios": "^1.13.2",
|
|
"pinia": "^3.0.4",
|
|
"primeicons": "^7.0.0",
|
|
"primevue": "^4.4.1",
|
|
"tailwindcss-primeui": "^0.6.1",
|
|
"unplugin-vue-components": "^30.0.0",
|
|
"vue": "^3.5.22",
|
|
"vue-router": "^4.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.6.0",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"@vue/tsconfig": "^0.8.1",
|
|
"typescript": "~5.9.3",
|
|
"vite": "^7.1.7",
|
|
"vue-tsc": "^3.1.0"
|
|
}
|
|
}
|