diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-23 03:52:14 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-23 03:52:14 +0200 |
commit | af36266ea8eace2d5ecf68eb4ecaa98b532be95b (patch) | |
tree | f760ad1d939e3f4159c5ffaf04f8b1c1ceb4b136 /util/package.json | |
parent | test (diff) | |
download | server-af36266ea8eace2d5ecf68eb4ecaa98b532be95b.tar.xz |
generate schema
Diffstat (limited to 'util/package.json')
-rw-r--r-- | util/package.json | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/util/package.json b/util/package.json index 0e7dcbc1..870c9344 100644 --- a/util/package.json +++ b/util/package.json @@ -5,8 +5,10 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { + "test": "jest", "postinstall": "npm run build", - "build": "npx tsc -b ." + "build": "npx tsc -b .", + "generate:schema": "npx typescript-json-schema tsconfig.json '*' -o src/models/schema.json" }, "repository": { "type": "git", @@ -28,28 +30,25 @@ "devDependencies": { "@types/amqplib": "^0.8.1", "@types/jsonwebtoken": "^8.5.0", - "@types/mongodb": "^3.6.9", "@types/mongoose-autopopulate": "^0.10.1", - "@types/mongoose-lean-virtuals": "^0.5.1", "@types/node": "^14.17.9", - "@types/node-fetch": "^2.5.12" + "@types/node-fetch": "^2.5.12", + "jest": "^27.0.6" }, "dependencies": { - "ajv": "^8.5.0", + "ajv": "^8.6.2", "amqplib": "^0.8.0", "class-validator": "^0.13.1", "dot-prop": "^6.0.1", "env-paths": "^2.2.1", "jsonwebtoken": "^8.5.1", "missing-native-js-functions": "^1.2.10", - "mongodb": "^3.6.9", - "mongoose": "^5.13.7", - "mongoose-autopopulate": "^0.12.3", "node-fetch": "^2.6.1", "reflect-metadata": "^0.1.13", "sqlite3": "^5.0.2", "ts-transform-json-schema": "^2.0.3", "typeorm": "^0.2.37", - "typescript": "^4.3.5" + "typescript": "^4.3.5", + "typescript-json-schema": "github:fosscord/typescript-json-schema" } } |