search-web/package.json
Yakumo Hokori 9e91195bf0 feat: 添加开发和生产环境配置文件并更新项目依赖
- 新增 `.env.development` 和 `.env.production` 文件,分别配置开发和生产环境的 API 基础 URL
- 更新 `package.json`,添加 `element-plus`、`axios`、`pinia` 等依赖
- 删除未使用的图标组件和欢迎页面组件
- 新增路由配置和主题管理 store
- 新增首页和搜索结果页面组件
- 更新 `vite.config.js`,添加代理配置和环境变量定义
2025-04-27 01:55:20 +08:00

26 lines
526 B
JSON

{
"name": "search-web",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"axios": "^1.9.0",
"element-plus": "^2.9.8",
"jquery": "^3.7.1",
"pinia": "^3.0.2",
"vue": "^3.5.13",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.3",
"vite": "^6.2.4",
"vite-plugin-vue-devtools": "^7.7.2"
}
}