mirror of
https://github.com/RhenCloud/Cloud-Home.git
synced 2026-01-22 17:39:07 +08:00
- 初始化 Vue 3 + Vite 项目结构 - 添加核心组件 (Hero, About, Projects, Friends 等) - 配置页面路由和基础样式 - 添加服务端 API 接口 (邮件发送, 好友请求) - 添加项目配置文件 (vercel.json, vite.config.js)
27 lines
658 B
JSON
27 lines
658 B
JSON
{
|
|
"name": "cloud-home",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@vercel/node": "^5.5.15",
|
|
"express": "^5.2.1",
|
|
"he": "^1.2.0",
|
|
"nodemailer": "^7.0.11",
|
|
"vue": "^3.5.25",
|
|
"vue-router": "^4.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "^24.10.1",
|
|
"@types/nodemailer": "^7.0.4",
|
|
"@vitejs/plugin-vue": "^6.0.2",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.2.6",
|
|
"vue-tsc": "^3.1.6"
|
|
}
|
|
} |