diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-15 22:32:57 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-15 22:32:57 +0200 |
commit | 04355a6661426eaca36200c123c242a64f3540cc (patch) | |
tree | 82a6adb95b2d511fc332abdc0b09950982c90f68 /bundle/package.json | |
parent | :arrow_up: update mongoose types (diff) | |
download | server-04355a6661426eaca36200c123c242a64f3540cc.tar.xz |
:bug: fix bundle postinstall
Diffstat (limited to 'bundle/package.json')
-rw-r--r-- | bundle/package.json | 11 |
1 files changed, 4 insertions, 7 deletions
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", |