mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-05 10:22:31 +01:00
96 lines
2.5 KiB
JSON
96 lines
2.5 KiB
JSON
{
|
|
"name": "fosscord-server",
|
|
"version": "1.0.0",
|
|
"description": "A Fosscord server written in Node.js",
|
|
"scripts": {
|
|
"postinstall": "npx patch-package",
|
|
"start": "node dist/bundle/start.js",
|
|
"build": "tsc -p .",
|
|
"generate:rights": "node scripts/rights.js",
|
|
"generate:schema": "node scripts/schema.js",
|
|
"generate:client": "node scripts/client.js"
|
|
},
|
|
"main": "dist/bundle/index.js",
|
|
"types": "src/bundle/index.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/fosscord/fosscord-server.git"
|
|
},
|
|
"author": "Fosscord",
|
|
"license": "AGPL-3.0-only",
|
|
"bugs": {
|
|
"url": "https://github.com/fosscord/fosscord-server/issues"
|
|
},
|
|
"imports": {
|
|
"#*": "./dist/*/index.js"
|
|
},
|
|
"homepage": "https://fosscord.com",
|
|
"devDependencies": {
|
|
"@types/amqplib": "^0.8.2",
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/cookie-parser": "^1.4.3",
|
|
"@types/fluent-ffmpeg": "^2.1.20",
|
|
"@types/i18next-node-fs-backend": "^2.1.1",
|
|
"@types/json-bigint": "^1.0.1",
|
|
"@types/jsonwebtoken": "^8.5.9",
|
|
"@types/morgan": "^1.9.3",
|
|
"@types/multer": "^1.4.7",
|
|
"@types/node": "^18.7.20",
|
|
"@types/node-fetch": "^2.6.2",
|
|
"@types/node-os-utils": "^1.3.0",
|
|
"@types/probe-image-size": "^7.2.0",
|
|
"@types/sharp": "^0.31.0",
|
|
"@types/ws": "^8.5.3",
|
|
"express": "^4.18.1",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.178.0",
|
|
"@sentry/node": "^7.13.0",
|
|
"@sentry/tracing": "^7.13.0",
|
|
"ajv": "^8.6.2",
|
|
"ajv-formats": "^2.1.1",
|
|
"amqplib": "^0.10.3",
|
|
"bcrypt": "^5.0.1",
|
|
"cheerio": "^1.0.0-rc.12",
|
|
"cookie-parser": "^1.4.6",
|
|
"dotenv": "^16.0.2",
|
|
"exif-be-gone": "^1.3.1",
|
|
"fast-zlib": "^2.0.1",
|
|
"file-type": "16.5",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"form-data": "^4.0.0",
|
|
"i18next": "^21.9.2",
|
|
"i18next-http-middleware": "^3.2.1",
|
|
"i18next-node-fs-backend": "^2.1.3",
|
|
"image-size": "^1.0.2",
|
|
"json-bigint": "^1.0.0",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"lambert-server": "^1.2.12",
|
|
"module-alias": "^2.2.2",
|
|
"morgan": "^1.10.0",
|
|
"multer": "^1.4.5-lts.1",
|
|
"node-2fa": "^2.0.3",
|
|
"node-fetch": "^2.6.7",
|
|
"node-os-utils": "^1.3.7",
|
|
"picocolors": "^1.0.0",
|
|
"probe-image-size": "^7.2.3",
|
|
"proxy-agent": "^5.0.0",
|
|
"sharp": "^0.31.0",
|
|
"sqlite3": "^5.1.1",
|
|
"typeorm": "^0.3.10",
|
|
"typescript-json-schema": "^0.50.1",
|
|
"ws": "^8.9.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"@yukikaze-bot/erlpack": "^1.0.1"
|
|
},
|
|
"_moduleAliases": {
|
|
"@fosscord/api": "dist/api",
|
|
"@fosscord/cdn": "dist/cdn",
|
|
"@fosscord/gateway": "dist/gateway",
|
|
"@fosscord/util": "dist/util"
|
|
}
|
|
}
|