mirror of
https://github.com/666ghj/MiroFish.git
synced 2026-05-02 00:22:13 +00:00
- Created package-lock.json for dependency management. - Updated package.json and frontend package.json to version 0.1.0. - Adjusted backend pyproject.toml to reflect version 0.1.0. - Introduced uv.lock for Python dependency resolution.
21 lines
385 B
JSON
21 lines
385 B
JSON
{
|
|
"name": "frontend",
|
|
"private": true,
|
|
"version": "0.1.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"
|
|
}
|
|
}
|