1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-08 11:52:55 +01:00
server/package.json

130 lines
3.9 KiB
JSON
Raw Normal View History

2022-04-26 20:34:15 +02:00
{
2023-03-31 06:52:33 +02:00
"name": "spacebar-server",
2022-04-26 20:34:15 +02:00
"version": "1.0.0",
2023-03-31 06:52:33 +02:00
"description": "A Spacebar server written in Node.js",
"scripts": {
2023-01-05 08:56:39 +01:00
"prepare": "husky install",
"postinstall": "npx patch-package",
"start": "node dist/bundle/start.js",
"start:api": "node dist/api/start.js",
"start:cdn": "node dist/cdn/start.js",
"start:gateway": "node dist/gateway/start.js",
"build": "tsc -p .",
"watch": "tsc -w -p .",
2023-04-18 13:22:55 +02:00
"test": "node scripts/test.js",
"lint": "eslint .",
"setup": "npm run build && npm run generate:schema",
2022-08-12 01:46:42 +02:00
"sync:db": "npm run build && node scripts/syncronise.js",
"generate:rights": "node scripts/rights.js",
2022-09-26 12:33:57 +02:00
"generate:schema": "node scripts/schema.js",
"generate:migration": "node -r dotenv/config -r module-alias/register node_modules/typeorm/cli.js migration:generate -d dist/util/util/Database.js",
"generate:openapi": "node scripts/openapi.js",
"add:license": "node scripts/license.js",
"migrate-from-staging": "node -r dotenv/config -r module-alias/register scripts/stagingMigration/index.js"
},
"main": "dist/bundle/index.js",
"types": "src/bundle/index.ts",
2022-04-26 20:34:15 +02:00
"repository": {
"type": "git",
2023-03-31 06:52:33 +02:00
"url": "git+https://github.com/spacebarchat/server.git"
2022-04-26 20:34:15 +02:00
},
2023-03-31 06:52:33 +02:00
"author": "Spacebar",
"license": "AGPL-3.0-only",
2022-04-26 20:34:15 +02:00
"bugs": {
2023-03-31 06:52:33 +02:00
"url": "https://github.com/spacebarchat/server/issues"
2022-04-26 20:34:15 +02:00
},
"imports": {
"#*": "./dist/*/index.js"
},
2023-03-31 06:52:33 +02:00
"homepage": "https://spacebar.chat",
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/i18next-node-fs-backend": "^2.1.5",
"@types/json-bigint": "^1.0.4",
"@types/jsonwebtoken": "^9.0.7",
2024-10-25 18:57:29 +02:00
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/murmurhash-js": "^1.0.6",
"@types/node": "^22.8.4",
"@types/node-fetch": "^2.6.11",
"@types/node-os-utils": "^1.3.4",
"@types/nodemailer": "^6.4.16",
"@types/probe-image-size": "^7.2.5",
2023-08-06 16:48:22 +02:00
"@types/sharp": "^0.31.1",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"express": "^4.21.1",
2024-10-15 11:37:38 +02:00
"husky": "^9.1.6",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
2024-10-29 20:24:51 +01:00
"typescript": "^5.6.3"
},
"dependencies": {
2024-10-29 21:06:18 +01:00
"@aws-sdk/client-s3": "^3.682.0",
2023-09-02 06:10:32 +02:00
"@sentry/integrations": "^7.66.0",
"@sentry/node": "^7.119.2",
"ajv": "^8.17.1",
2022-12-17 09:41:49 +01:00
"ajv-formats": "2.1.1",
"amqplib": "^0.10.4",
"bcrypt": "^5.1.1",
2024-10-15 11:37:38 +02:00
"body-parser": "^1.20.3",
"cheerio": "^1.0.0",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"exif-be-gone": "^1.5.1",
"fast-zlib": "^2.0.1",
"fido2-lib": "^3.5.3",
2023-08-06 16:48:22 +02:00
"file-type": "~16.5.4",
"form-data": "^4.0.1",
2024-10-29 21:04:24 +01:00
"i18next": "^23.16.4",
"i18next-fs-backend": "^2.3.2",
"i18next-http-middleware": "^3.6.0",
"image-size": "^1.1.1",
"json-bigint": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"lambert-server": "^1.2.12",
2023-08-06 16:48:22 +02:00
"missing-native-js-functions": "^1.4.3",
"module-alias": "^2.2.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"murmurhash-js": "^1.0.0",
"node-2fa": "^2.0.3",
"node-fetch-commonjs": "^3.3.2",
"node-os-utils": "^1.3.7",
"nodemailer": "^6.9.16",
"picocolors": "^1.1.1",
2022-10-01 06:44:32 +02:00
"probe-image-size": "^7.2.3",
"proxy-agent": "^6.4.0",
"reflect-metadata": "^0.1.14",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typeorm": "^0.3.20",
2022-12-27 08:50:33 +01:00
"typescript-json-schema": "^0.50.1",
"wretch": "^2.11.0",
"ws": "^8.18.0"
},
"_moduleAliases": {
2023-03-31 06:52:33 +02:00
"@spacebar/api": "dist/api",
"@spacebar/cdn": "dist/cdn",
"@spacebar/gateway": "dist/gateway",
"@spacebar/util": "dist/util"
},
"optionalDependencies": {
2024-10-15 11:16:32 +02:00
"@yukikaze-bot/erlpack": "^1.0.1",
"jimp": "^0.22.12",
2024-02-19 11:09:50 +01:00
"mysql": "^2.18.1",
2023-01-21 19:53:26 +01:00
"nodemailer-mailgun-transport": "^2.1.5",
2023-02-24 06:39:17 +01:00
"nodemailer-mailjet-transport": "github:n0script22/nodemailer-mailjet-transport",
"nodemailer-sendgrid-transport": "github:Maria-Golomb/nodemailer-sendgrid-transport",
"pg": "^8.13.1",
"sqlite3": "^5.1.7"
}
2022-04-26 20:34:15 +02:00
}