- Added D3.js as a dependency in `package.json` and `package-lock.json` for data visualization capabilities. - Introduced a new `pendingUpload.js` store to manage files and simulation requirements before initiating the simulation process. - Updated `Home.vue` to store pending uploads and navigate to the `Process` page immediately, deferring API calls for improved user experience. - Enhanced `Process.vue` to handle new project initialization and display project status effectively, including progress tracking for ontology generation and graph building.
21 lines
385 B
JSON
21 lines
385 B
JSON
{
|
|
"name": "frontend",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.13.2",
|
|
"d3": "^7.9.0",
|
|
"vue": "^3.5.24",
|
|
"vue-router": "^4.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"vite": "^7.2.4"
|
|
}
|
|
}
|