Files
Web_BLS_ProjectConsole/package.json
XuJiacheng 19e65d78dc feat: 实现Redis集成协议并重构项目控制台
refactor(backend): 重构后端服务以支持Redis协议
feat(backend): 添加Redis客户端和服务模块
feat(backend): 实现命令和日志路由处理Redis交互
refactor(frontend): 重构前端状态管理和组件结构
feat(frontend): 实现基于Redis的日志和命令功能
docs: 添加Redis集成协议文档
chore: 更新ESLint配置和依赖
2026-01-12 19:55:51 +08:00

31 lines
878 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "web-bls-projectconsole",
"version": "1.0.0",
"description": "前后端Node.js控制台项目用于从Redis队列读取日志记录并展示以及发送控制台指令到Redis队列",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "node src/backend/server.js",
"start:dev": "nodemon src/backend/server.js",
"lint": "eslint . --ext .js,.vue --config .eslintrc.cjs",
"format": "prettier --write ."
},
"dependencies": {
"axios": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"redis": "^4.6.10",
"vue": "^3.3.8",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"eslint": "^8.53.0",
"eslint-plugin-vue": "^9.18.1",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"vite": "^5.0.0"
}
}