123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "backend",
- "version": "1.0.0",
- "description": "基于EGG框架后端框架",
- "private": true,
- "egg": {
- "typescript": true
- },
- "scripts": {
- "start": "egg-scripts start --daemon --title=egg-server-backend",
- "stop": "egg-scripts stop --title=egg-server-backend",
- "dev": "egg-bin dev",
- "test-local": "egg-bin test -p",
- "test": "npm run lint -- --fix && npm run test-local",
- "cov": "egg-bin cov -p",
- "ci": "npm run lint && npm run cov && npm run tsc && npm run clean",
- "lint": "eslint . --ext .ts --cache",
- "tsc": "tsc",
- "clean": "tsc -b --clean"
- },
- "dependencies": {
- "@eggjs/tegg": "^3.5.2",
- "@eggjs/tegg-aop-plugin": "^3.5.2",
- "@eggjs/tegg-config": "^3.2.3",
- "@eggjs/tegg-controller-plugin": "^3.5.2",
- "@eggjs/tegg-eventbus-plugin": "^3.5.2",
- "@eggjs/tegg-plugin": "^3.5.2",
- "@eggjs/tegg-schedule-plugin": "^3.5.2",
- "dotenv": "^16.3.1",
- "egg": "^3.15.0",
- "egg-cors": "^2.2.3",
- "egg-jwt": "^3.1.7",
- "egg-scripts": "^2.17.0",
- "egg-sequelize": "^6.0.0",
- "egg-tracer": "^2.0.0",
- "egg-validate": "^2.0.2",
- "mysql2": "^3.4.0"
- },
- "devDependencies": {
- "@eggjs/tsconfig": "1",
- "@types/mocha": "10",
- "@types/node": "18",
- "egg-bin": "6",
- "egg-mock": "5",
- "egg-router-plus": "^2.0.0",
- "eslint": "8",
- "eslint-config-egg": "12",
- "sequelize-cli": "^6.6.1",
- "typescript": "4"
- },
- "engines": {
- "node": ">=18.0.0"
- },
- "repository": {
- "type": "git",
- "url": ""
- },
- "author": "",
- "license": "MIT"
- }
|