mirror of
https://github.com/pure-admin/pure-admin-backend.git
synced 2025-04-24 23:37:17 +08:00
34 lines
832 B
JSON
34 lines
832 B
JSON
{
|
|
"name": "backend-ts",
|
|
"version": "1.0.0",
|
|
"description": "API接口",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "ts-node ./src/server.ts",
|
|
"start": "nodemon ./dist/server.js",
|
|
"prod": "npm run build && npm run start",
|
|
"yarn:clean": "yarn cache clean"
|
|
},
|
|
"author": "xiaoxian521",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@types/express": "^4.17.9",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"express-swagger-generator": "^1.1.17",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"mysql2": "^2.2.5",
|
|
"svg-captcha": "^1.4.0",
|
|
"winston": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"body-parser": "^1.19.0",
|
|
"nodemon": "^1.19.4",
|
|
"open": "^7.3.0",
|
|
"tslint": "^5.20.1",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"repository": "git@github.com:xiaoxian521/vue-pure-admin.git"
|
|
}
|