diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-15 00:58:53 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-15 00:58:53 +0200 |
commit | 380704a866baf9c3df3d51b7fa264ce804e3b945 (patch) | |
tree | 2715b71ee908bedd680b91f5e7b49d282157356d /util/package.json | |
parent | :sparkles: start.bat and start.sh script (diff) | |
download | server-380704a866baf9c3df3d51b7fa264ce804e3b945.tar.xz |
:bug: fix tsc missing
Diffstat (limited to 'util/package.json')
-rw-r--r-- | util/package.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util/package.json b/util/package.json index 8f32c1e3..be1cc73f 100644 --- a/util/package.json +++ b/util/package.json @@ -6,7 +6,7 @@ "types": "dist/index.d.ts", "scripts": { "postinstall": "npm run build", - "build": "tsc -b ." + "build": "npx tsc -b ." }, "repository": { "type": "git", @@ -34,15 +34,15 @@ "@types/node": "^14.17.9", "@types/node-fetch": "^2.5.12", "ajv": "^8.5.0", + "amqplib": "^0.8.0", "dot-prop": "^6.0.1", "env-paths": "^2.2.1", - "typescript": "^4.1.3", - "amqplib": "^0.8.0", "jsonwebtoken": "^8.5.1", - "mongoose-autopopulate": "^0.12.3", - "mongoose": "^5.13.7", "missing-native-js-functions": "^1.2.2", "mongodb": "^3.6.9", - "node-fetch": "^2.6.1" + "mongoose": "^5.13.7", + "mongoose-autopopulate": "^0.12.3", + "node-fetch": "^2.6.1", + "typescript": "^4.1.3" } } |