This commit is contained in:
WangXinghao
2025-11-04 18:08:19 +08:00
commit da90aa774a
10 changed files with 2299 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "dist",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "tsx src/server.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^1.13.1",
"express": "^5.1.0"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/node": "^24.10.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}