27 lines
656 B
JSON
27 lines
656 B
JSON
{
|
|
"name": "nodeserver",
|
|
"version": "1.0.0",
|
|
"description": "由typescript编写的node.js通用后端服务框架",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "ts-node -r tsconfig-paths/register src/index.ts",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"author": "tone",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^22.6.1",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.21.0",
|
|
"ioredis": "^5.4.1",
|
|
"mysql2": "^3.11.3",
|
|
"typescript": "^5.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig-paths": "^4.2.0"
|
|
}
|
|
}
|