first
parents
Showing
.dockerignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitkeep
0 → 100644
.gitlab-ci.yml
0 → 100644
.npmignore
0 → 100644
.prettierrc
0 → 100644
Dockerfile
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
config.example.yaml
0 → 100644
install-npm-typeorm.sh
0 → 100755
install-npm.sh
0 → 100755
nest-cli.json
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
| { | ||
| "name": "jdaw", | ||
| "version": "0.0.1", | ||
| "description": "", | ||
| "author": "", | ||
| "private": true, | ||
| "license": "UNLICENSED", | ||
| "scripts": { | ||
| "prebuild": "rimraf dist", | ||
| "build": "nest build", | ||
| "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | ||
| "start": "nest start", | ||
| "start:dev": "nest start --watch", | ||
| "start:debug": "nest start --debug --watch", | ||
| "start:prod": "node dist/main", | ||
| "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
| "test": "jest", | ||
| "test:watch": "jest --watch", | ||
| "test:cov": "jest --coverage", | ||
| "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", | ||
| "test:e2e": "jest --config ./test/jest-e2e.json" | ||
| }, | ||
| "dependencies": { | ||
| "@koishijs/plugin-help": "^2.0.2", | ||
| "@nestjs/axios": "^1.0.1", | ||
| "@nestjs/common": "^9.0.0", | ||
| "@nestjs/config": "^2.2.0", | ||
| "@nestjs/core": "^9.0.0", | ||
| "@nestjs/platform-express": "^9.0.0", | ||
| "@nestjs/schedule": "^2.1.0", | ||
| "@nestjs/swagger": "^6.1.4", | ||
| "@nestjs/typeorm": "^9.0.1", | ||
| "class-transformer": "^0.5.1", | ||
| "class-validator": "^0.13.2", | ||
| "koishi": "^4.11.1", | ||
| "koishi-nestjs": "^6.0.16", | ||
| "koishi-plugin-adapter-wechat-official": "^1.0.2", | ||
| "koishi-plugin-puppeteer": "^3.3.1", | ||
| "koishi-plugin-ygocard": "^10.4.7", | ||
| "nicot": "^1.0.17", | ||
| "pg": "^8.8.0", | ||
| "pg-native": "^3.0.1", | ||
| "reflect-metadata": "^0.1.13", | ||
| "rimraf": "^3.0.2", | ||
| "rxjs": "^7.2.0", | ||
| "simple-git": "^3.15.1", | ||
| "typeorm": "^0.3.11", | ||
| "yaml": "^2.2.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@nestjs/cli": "^9.0.0", | ||
| "@nestjs/schematics": "^9.0.0", | ||
| "@nestjs/testing": "^9.0.0", | ||
| "@types/express": "^4.17.15", | ||
| "@types/jest": "28.1.8", | ||
| "@types/node": "^16.0.0", | ||
| "@types/supertest": "^2.0.11", | ||
| "@typescript-eslint/eslint-plugin": "^5.0.0", | ||
| "@typescript-eslint/parser": "^5.0.0", | ||
| "eslint": "8.22.0", | ||
| "eslint-config-prettier": "^8.3.0", | ||
| "eslint-plugin-prettier": "^4.0.0", | ||
| "jest": "28.1.3", | ||
| "prettier": "^2.3.2", | ||
| "source-map-support": "^0.5.20", | ||
| "supertest": "^6.1.3", | ||
| "ts-jest": "28.0.8", | ||
| "ts-loader": "^9.2.3", | ||
| "ts-node": "^10.0.0", | ||
| "tsconfig-paths": "4.1.0", | ||
| "typescript": "^4.9.4" | ||
| }, | ||
| "jest": { | ||
| "moduleFileExtensions": [ | ||
| "js", | ||
| "json", | ||
| "ts" | ||
| ], | ||
| "rootDir": "src", | ||
| "testRegex": ".*\\.spec\\.ts$", | ||
| "transform": { | ||
| "^.+\\.(t|j)s$": "ts-jest" | ||
| }, | ||
| "collectCoverageFrom": [ | ||
| "**/*.(t|j)s" | ||
| ], | ||
| "coverageDirectory": "../coverage", | ||
| "testEnvironment": "node" | ||
| } | ||
| } |
src/app.module.ts
0 → 100644
src/dto/ReturnMessage.dto.ts
0 → 100644
src/main.ts
0 → 100644
src/reply/reply.service.ts
0 → 100644
src/utility/config.ts
0 → 100644
test/app.e2e-spec.ts
0 → 100644
test/jest-e2e.json
0 → 100644
tsconfig.build.json
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment