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",
|