MysqlSearchProcessor.ts
parents
Showing
.eslintignore
0 → 100644
.eslintrc
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.vscode/launch.json
0 → 100644
README.md
0 → 100644
bcopy
0 → 100644
config/citest.json
0 → 100644
config/default.json
0 → 100755
config/development.json
0 → 100755
config/test.json
0 → 100644
data/fixtures/Resource.json
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
| { | ||
| "name": "ts_basis", | ||
| "version": "1.0.0", | ||
| "description": "", | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "start": "NODE_ENV=development node dist/bin.js", | ||
| "staging": "NODE_ENV=staging node ./dist/bin.js", | ||
| "cloud": "NODE_ENV=cloud node ./dist/bin.js", | ||
| "dev": "nodemon -e ts --watch src .env --exec \"tsc --incremental && node dist/bin.js\"", | ||
| "test": "NODE_ENV=test node ./node_modules/mocha/bin/mocha --require ts-node/register src/tests/setup.ts src/tests/**/*.test.ts", | ||
| "citest": "NODE_ENV=citest node ./node_modules/mocha/bin/mocha --require ts-node/register src/tests/setup.ts src/tests/**/*.test.ts", | ||
| "lint": "eslint . --ext .ts", | ||
| "build": "tsc -p ." | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "http://gitlab.bridata.com:8090/root/ts_basis.git" | ||
| }, | ||
| "author": "", | ||
| "license": "ISC", | ||
| "dependencies": { | ||
| "ali-oss": "^6.15.2", | ||
| "async-redis": "^1.1.7", | ||
| "axios": "^0.21.1", | ||
| "bson-objectid": "^1.3.1", | ||
| "bull": "^4.10.2", | ||
| "config": "^3.1.0", | ||
| "cookie-parser": "^1.4.6", | ||
| "debug": "~2.6.9", | ||
| "esprima": "^4.0.1", | ||
| "express": "^4.18.1", | ||
| "html-docx-js": "^0.3.1", | ||
| "http-errors": "~1.6.2", | ||
| "ioredis": "^5.3.1", | ||
| "irr-npv": "^1.0.1", | ||
| "jsonwebtoken": "^8.5.1", | ||
| "lodash": "^4.17.21", | ||
| "log4js": "^6.7.1", | ||
| "mammoth": "^1.4.14", | ||
| "md5": "^2.2.1", | ||
| "mocha": "^9.2.2", | ||
| "moment": "^2.29.4", | ||
| "mongoose": "^5.9.2", | ||
| "mongoose-autopopulate": "^0.9.1", | ||
| "multer": "^1.4.4", | ||
| "mysql2": "^2.1.0", | ||
| "passport": "^0.4.1", | ||
| "sequelize": "^6.3.4", | ||
| "socket.io": "^4.5.4", | ||
| "svg-captcha": "^1.4.0", | ||
| "xlsx": "^0.16.9" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/ali-oss": "^6.16.6", | ||
| "@types/async-redis": "^1.1.3", | ||
| "@types/config": "^3.3.0", | ||
| "@types/cookie-parser": "^1.4.3", | ||
| "@types/express": "^4.17.13", | ||
| "@types/html-docx-js": "^0.3.1", | ||
| "@types/http-errors": "^2.0.1", | ||
| "@types/jsonwebtoken": "^8.5.9", | ||
| "@types/lodash": "^4.14.189", | ||
| "@types/md5": "^2.3.2", | ||
| "@types/mocha": "^10.0.1", | ||
| "@types/multer": "^1.4.7", | ||
| "@types/node": "^18.7.16", | ||
| "@types/passport": "^1.0.11", | ||
| "@typescript-eslint/eslint-plugin": "^5.44.0", | ||
| "@typescript-eslint/parser": "^5.44.0", | ||
| "eslint": "^8.28.0", | ||
| "nodemon": "^2.0.19", | ||
| "ts-node": "^10.9.1", | ||
| "tsconfig-paths": "^4.1.1", | ||
| "typescript": "^4.8.3" | ||
| } | ||
| } |
shell/buildAll.sh
0 → 100644
shell/mergeCloud.sh
0 → 100644
shell/mergeStaging.sh
0 → 100644
shell/mergeTmp.sh
0 → 100644
shell/pullDev.sh
0 → 100644
shell/pushDev.sh
0 → 100644
shell/removeBaseChange.sh
0 → 100644
shell/showStatus.sh
0 → 100644
src/api/def/base/defUtil.ts
0 → 100644
src/api/def/base/enums.ts
0 → 100644
src/api/def/base/jobTypes.ts
0 → 100644
src/api/def/base/logTypes.ts
0 → 100644
src/api/def/base/modTypes.ts
0 → 100644
src/api/lib/cloudEnv.ts
0 → 100755
src/api/lib/cms.ts
0 → 100644
src/api/lib/events.ts
0 → 100755
src/api/lib/jwtlib.ts
0 → 100755
src/api/lib/mongo/index.ts
0 → 100755
src/api/lib/mongo/plugins.ts
0 → 100755
src/api/lib/mw.ts
0 → 100755
src/api/lib/redis.ts
0 → 100755
src/api/lib/remoteEnv.ts
0 → 100644
src/api/lib/tools.ts
0 → 100755
src/api/util/api_util.ts
0 → 100755
src/app.ts
0 → 100644
src/bin.ts
0 → 100644
src/gvar.ts
0 → 100644
src/routes/api.ts
0 → 100755
src/routes/cloud.ts
0 → 100755
src/tests/setup.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment