Files
Web_BLS_ProjectConsole/package.json
XuJiacheng 7ac3949dfa feat: 重构项目心跳为Redis LIST并更新相关文档
重构项目心跳数据结构为Redis LIST,更新相关文档和OpenSpec规范。主要变更包括:
- 将项目心跳从STRING改为LIST类型
- 更新后端服务以支持LIST操作
- 同步更新文档和OpenSpec规范
- 统一后端端口为3001
- 添加部署指南和Windows部署文档

修复前端API请求路径,移除硬编码的localhost地址。添加PM2和Nginx配置文件模板,完善部署流程文档。更新Redis集成协议文档,明确LIST数据结构和外部项目对接规范。
2026-01-17 18:36:52 +08:00

36 lines
986 B
JSON
Raw Permalink 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",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --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",
"supertest": "^7.1.3",
"vite": "^5.0.0",
"vitest": "^1.6.0"
}
}