拆分快手轻量后端入口

This commit is contained in:
yml
2026-05-25 20:42:27 +08:00
parent d58d483944
commit db22ff691b
23 changed files with 1146 additions and 13 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"name": "order-site-backend-kuaishou",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build:kuaishou": "tsc -p tsconfig.kuaishou.build.json && rm -rf dist/db/migrations && mkdir -p dist/db && cp -R src/db/migrations dist/db/migrations",
"db:migrate": "tsx src/db/migrate.ts",
"start:kuaishou": "node dist/index-kuaishou.js"
},
"dependencies": {
"express": "^5.1.0",
"pg": "^8.16.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"tsx": "^4.22.3",
"typescript": "^6.0.2"
}
}