| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- "name": "shuanghui",
- "version": "0.0.1",
- "description": "shuanghui",
- "keywords": [
- "loopback-application",
- "loopback"
- ],
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "engines": {
- "node": "14 || 16 || 17 || 18"
- },
- "scripts": {
- "build": "lb-tsc",
- "build:watch": "lb-tsc --watch",
- "lint": "npm run eslint && npm run prettier:check",
- "lint:fix": "npm run eslint:fix && npm run prettier:fix",
- "prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
- "prettier:check": "npm run prettier:cli -- -l",
- "prettier:fix": "npm run prettier:cli -- --write",
- "eslint": "lb-eslint --report-unused-disable-directives .",
- "eslint:fix": "npm run eslint -- --fix",
- "pretest": "npm run rebuild",
- "test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
- "posttest": "npm run lint",
- "test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
- "docker:build": "docker build -t shuanghui .",
- "docker:run": "docker run -p 3000:3000 -d shuanghui",
- "premigrate": "npm run build",
- "migrate": "node ./dist/migrate",
- "preopenapi-spec": "npm run build",
- "openapi-spec": "node ./dist/openapi-spec",
- "prestart": "npm run rebuild",
- "start": "node -r source-map-support/register .",
- "clean": "lb-clean dist *.tsbuildinfo .eslintcache",
- "rebuild": "npm run clean && npm run build",
- "pm2start": "pm2 start ecosystem.config.js --env production",
- "pm2stop": "pm2 stop ecosystem.config.js --env production"
- },
- "repository": {
- "type": "git",
- "url": ""
- },
- "author": "yinrm <yinrm@qq.com>",
- "license": "",
- "files": [
- "README.md",
- "dist",
- "src",
- "!*/__tests__"
- ],
- "dependencies": {
- "@hapi/wreck": "^17.2.0",
- "@loopback/authentication": "^9.0.2",
- "@loopback/authorization": "^0.12.2",
- "@loopback/boot": "^5.0.2",
- "@loopback/core": "^4.0.2",
- "@loopback/cron": "^0.9.2",
- "@loopback/repository": "^5.1.5",
- "@loopback/rest": "^12.0.2",
- "@loopback/rest-explorer": "^5.0.2",
- "@loopback/security": "^0.8.2",
- "@loopback/service-proxy": "^5.0.2",
- "@types/crypto-js": "^4.1.3",
- "bcryptjs": "^2.4.3",
- "casbin": "^5.15.0",
- "crypto-js": "^4.2.0",
- "exceljs": "^4.4.0",
- "jsonwebtoken": "^8.5.1",
- "lodash": "^4.17.21",
- "loopback-connector-kv-redis": "^3.0.3",
- "loopback-connector-mysql": "^6.0.0",
- "loopback-connector-redis": "^3.0.0",
- "moment": "^2.29.2",
- "msgpack5": "^6.0.2",
- "multer": "^1.4.4",
- "mysql-promise": "^5.0.0",
- "node-jsencrypt": "^1.0.0",
- "nodemailer": "^6.9.8",
- "readline": "^1.3.0",
- "tslib": "^2.0.0",
- "uuid": "^9.0.0"
- },
- "devDependencies": {
- "@loopback/build": "^9.0.2",
- "@loopback/eslint-config": "^13.0.2",
- "@loopback/testlab": "^5.0.2",
- "@types/bcryptjs": "^2.4.2",
- "@types/msgpack5": "^3.4.5",
- "@types/multer": "^1.4.7",
- "@types/node": "^14.18.21",
- "@types/uuid": "^8.3.4",
- "eslint": "^8.19.0",
- "source-map-support": "^0.5.21",
- "typescript": "~4.7.4"
- }
- }
|