diff --git a/api/package.json b/api/package.json index 7b2de011..723b47d0 100644 --- a/api/package.json +++ b/api/package.json @@ -5,6 +5,7 @@ "main": "dist/Server.js", "types": "dist/Server.d.ts", "scripts": { + "postinstall": "npm run build", "test": "jest", "test:watch": "jest --watch", "start": "npm run build && node dist/start", diff --git a/bundle/package-lock.json b/bundle/package-lock.json index 7cf5dac2..354487be 100644 Binary files a/bundle/package-lock.json and b/bundle/package-lock.json differ diff --git a/bundle/package.json b/bundle/package.json index 3c25f102..d41329f2 100644 --- a/bundle/package.json +++ b/bundle/package.json @@ -4,13 +4,9 @@ "description": "", "main": "src/start.js", "scripts": { - "build": "npm run build:api && npm run build:cdn && npm run build:gateway && npm run build:bundle", - "build:bundle": "npx tsc -b .", - "build:api": "cd ../api/ && npm run build", - "build:cdn": "cd ../cdn/ && npm run build", - "build:gateway": "cd ../gateway/ && npm run build", + "postinstall": "cd ../util && npm i && cd ../api && npm i && cd ../cdn && npm i && cd ../gateway && npm i", + "build": "npx tsc -b .", "start": "npm run build && node dist/start.js", - "bundle": "npm run build && node dist/startBundle.js", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { @@ -26,17 +22,18 @@ "homepage": "https://fosscord.com", "devDependencies": { "@types/amqplib": "^0.8.1", + "@types/async-exit-hook": "^2.0.0", "@types/bcrypt": "^5.0.0", "@types/express": "^4.17.9", "@types/i18next-node-fs-backend": "^2.1.0", "@types/jsonwebtoken": "^8.5.0", "@types/mongodb": "^3.6.9", - "@types/mongoose": "^5.10.5", "@types/mongoose-autopopulate": "^0.10.1", "@types/mongoose-lean-virtuals": "^0.5.1", "@types/multer": "^1.4.5", "@types/node": "^14.17.9", "@types/node-fetch": "^2.5.7", + "@types/node-os-utils": "^1.2.0", "@types/uuid": "^8.3.0", "@types/ws": "^7.4.0", "@zerollup/ts-transform-paths": "^1.7.18", diff --git a/cdn/package.json b/cdn/package.json index 0c8e872c..190a80a3 100644 --- a/cdn/package.json +++ b/cdn/package.json @@ -5,6 +5,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { + "postinstall": "npm run build", "test": "echo \"Error: no test specified\" && exit 1", "build": "npx tsc -b .", "start": "npm run build && node dist/start.js" @@ -29,7 +30,6 @@ "@types/fs-extra": "^9.0.12", "@types/jsonwebtoken": "^8.5.0", "@types/mongodb": "^3.6.9", - "@types/mongoose": "^5.10.5", "@types/mongoose-autopopulate": "^0.10.1", "@types/mongoose-lean-virtuals": "^0.5.1", "@types/multer": "^1.4.7", diff --git a/gateway/package.json b/gateway/package.json index ba07e7ee..a5b9e547 100644 --- a/gateway/package.json +++ b/gateway/package.json @@ -4,6 +4,7 @@ "description": "", "main": "dist/index.js", "scripts": { + "postinstall": "npm run build", "test": "echo \"Error: no test specified\" && exit 1", "start": "npm run build && node dist/start.js", "build": "npx tsc -b .", @@ -16,7 +17,6 @@ "@types/amqplib": "^0.8.1", "@types/jsonwebtoken": "^8.5.0", "@types/mongodb": "^3.6.9", - "@types/mongoose": "^5.10.5", "@types/mongoose-autopopulate": "^0.10.1", "@types/mongoose-lean-virtuals": "^0.5.1", "@types/node": "^14.17.9", diff --git a/util/package.json b/util/package.json index dbdcfe19..69d33844 100644 --- a/util/package.json +++ b/util/package.json @@ -29,7 +29,6 @@ "@types/amqplib": "^0.8.1", "@types/jsonwebtoken": "^8.5.0", "@types/mongodb": "^3.6.9", - "@types/mongoose": "^5.10.5", "@types/mongoose-autopopulate": "^0.10.1", "@types/mongoose-lean-virtuals": "^0.5.1", "@types/node": "^14.17.9", diff --git a/util/src/util/Database.ts b/util/src/util/Database.ts index 233152f1..2e04e0ff 100644 --- a/util/src/util/Database.ts +++ b/util/src/util/Database.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import "./MongoBigInt"; import mongoose, { Collection, Connection, LeanDocument } from "mongoose"; import { ChangeStream, ChangeEvent, Long } from "mongodb"; diff --git a/util/src/util/MongoBigInt.ts b/util/src/util/MongoBigInt.ts index 5148b742..2ae8b91c 100644 --- a/util/src/util/MongoBigInt.ts +++ b/util/src/util/MongoBigInt.ts @@ -1,3 +1,4 @@ +// @ts-nocheck import mongoose from "mongoose"; class LongSchema extends mongoose.SchemaType {