- 新建多个小程序的 app.js、app.json 和 app.wxss 文件 - 新建多个前端项目的 App.vue 文件 - 添加 .gitignore 文件和后端 API 的 .env.example 文件
30 lines
691 B
JSON
30 lines
691 B
JSON
{
|
|
"name": "xlxumu-api",
|
|
"version": "1.0.0",
|
|
"description": "锡林郭勒盟安格斯牛数字化管理平台API服务",
|
|
"author": "xlxumu team",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.0",
|
|
"cors": "^2.8.5",
|
|
"helmet": "^6.0.0",
|
|
"dotenv": "^16.0.0",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"mysql2": "^3.0.0",
|
|
"sequelize": "^6.0.0",
|
|
"joi": "^17.0.0",
|
|
"winston": "^3.8.0",
|
|
"express-rate-limit": "^6.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.0",
|
|
"jest": "^29.0.0",
|
|
"supertest": "^6.3.0"
|
|
}
|
|
} |