功能:每日抓取 GitHub Top 10 趋势项目,展示中文描述、功能摘要与安装命令, 支持用户收藏,未收藏项目 7 天后自动删除。 技术栈:Node.js + Express + SQLite / React + Vite + Tailwind CSS Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
437 B
JSON
15 lines
437 B
JSON
{
|
|
"name": "github-trending",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"install:all": "npm install && npm install --prefix backend && npm install --prefix frontend",
|
|
"dev": "concurrently \"npm run dev --prefix backend\" \"npm run dev --prefix frontend\"",
|
|
"build": "npm run build --prefix frontend",
|
|
"start": "npm run start --prefix backend"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
}
|