重构后端,改为 node 技术栈

This commit is contained in:
eafonyang
2026-06-09 16:36:23 +08:00
parent abab985769
commit e4e6529577
59 changed files with 4901 additions and 1916 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "audio-dashboard-api",
"version": "1.0.0",
"description": "耳机品牌与型号管理平台后端 API",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js"
},
"dependencies": {
"express": "^4.21",
"cors": "^2.8",
"sequelize": "^6.37",
"mysql2": "^3.11",
"jsonwebtoken": "^9.0",
"multer": "^1.4",
"axios": "^1.7",
"dotenv": "^16.4",
"zod": "^3.23",
"@aws-sdk/client-s3": "^3.650",
"winston": "^3.14"
},
"devDependencies": {
"nodemon": "^3.1"
}
}