2021-08-13 12:58:18 +02:00
|
|
|
{
|
|
|
|
"name": "@fosscord/server",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "",
|
|
|
|
"main": "src/start.js",
|
|
|
|
"scripts": {
|
2022-01-24 13:25:00 +01:00
|
|
|
"setup": "node scripts/install.js && npm install --no-optional && ts-patch install -s && patch-package --patch-dir ../api/patches/ && npm run build",
|
2021-10-07 18:21:17 +02:00
|
|
|
"build": "node scripts/build.js",
|
2021-10-10 11:03:04 +02:00
|
|
|
"start": "node scripts/build.js && node dist/bundle/src/start.js",
|
|
|
|
"start:bundle": "node dist/bundle/src/start.js",
|
2021-10-10 14:21:24 +02:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2022-03-06 07:18:35 +01:00
|
|
|
"migrate": "cd ../util/ && npm i && node --require ts-node/register node_modules/typeorm/cli.js -f ../util/ormconfig.json migration:run",
|
|
|
|
"tsnode": "npx ts-node --transpile-only -P tsnode.tsconfig.json src/start.ts"
|
2021-08-13 12:58:18 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-08-13 13:18:45 +02:00
|
|
|
"url": "git+https://github.com/fosscord/fosscord-server.git"
|
2021-08-13 12:58:18 +02:00
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "Fosscord",
|
|
|
|
"license": "AGPLV3",
|
|
|
|
"bugs": {
|
2021-08-13 13:18:45 +02:00
|
|
|
"url": "https://github.com/fosscord/fosscord-server/issues"
|
2021-08-13 12:58:18 +02:00
|
|
|
},
|
2021-08-13 13:18:45 +02:00
|
|
|
"homepage": "https://fosscord.com",
|
2021-08-15 13:53:21 +02:00
|
|
|
"devDependencies": {
|
2021-10-10 11:03:04 +02:00
|
|
|
"@babel/core": "^7.15.5",
|
2021-10-15 23:51:31 +02:00
|
|
|
"@babel/preset-env": "^7.15.8",
|
2021-10-10 11:03:04 +02:00
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
2021-08-15 13:53:21 +02:00
|
|
|
"@types/amqplib": "^0.8.1",
|
|
|
|
"@types/bcrypt": "^5.0.0",
|
2021-10-10 11:03:04 +02:00
|
|
|
"@types/body-parser": "^1.19.0",
|
|
|
|
"@types/btoa": "^1.2.3",
|
|
|
|
"@types/dotenv": "^8.2.0",
|
|
|
|
"@types/express": "^4.17.12",
|
|
|
|
"@types/fs-extra": "^9.0.12",
|
2021-08-15 13:53:21 +02:00
|
|
|
"@types/i18next-node-fs-backend": "^2.1.0",
|
2021-10-10 11:03:04 +02:00
|
|
|
"@types/jest": "^27.0.1",
|
|
|
|
"@types/jest-expect-message": "^1.0.3",
|
2021-08-15 13:53:21 +02:00
|
|
|
"@types/jsonwebtoken": "^8.5.0",
|
2021-10-16 21:48:57 +02:00
|
|
|
"@types/morgan": "^1.9.3",
|
2021-10-10 11:03:04 +02:00
|
|
|
"@types/multer": "^1.4.7",
|
|
|
|
"@types/node": "^14.17.9",
|
|
|
|
"@types/node-fetch": "^2.5.12",
|
2021-08-15 22:32:57 +02:00
|
|
|
"@types/node-os-utils": "^1.2.0",
|
2021-10-10 11:03:04 +02:00
|
|
|
"@types/supertest": "^2.0.11",
|
2021-08-15 13:53:21 +02:00
|
|
|
"@types/ws": "^7.4.0",
|
2021-08-15 21:56:30 +02:00
|
|
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
2021-10-10 11:03:04 +02:00
|
|
|
"jest": "^27.0.6",
|
|
|
|
"jest-expect-message": "^1.0.2",
|
|
|
|
"jest-runtime": "^27.2.1",
|
2021-10-15 11:46:28 +02:00
|
|
|
"ts-node": "^10.2.1",
|
2021-10-10 11:03:04 +02:00
|
|
|
"ts-node-dev": "^1.1.6",
|
2021-09-20 23:34:54 +02:00
|
|
|
"ts-patch": "^1.4.4",
|
2022-03-06 07:18:35 +01:00
|
|
|
"tsconfig-paths": "^3.12.0",
|
2021-10-10 11:03:04 +02:00
|
|
|
"typescript": "^4.2.3",
|
2021-10-16 21:48:57 +02:00
|
|
|
"typescript-json-schema": "0.50.1"
|
2021-08-15 13:53:21 +02:00
|
|
|
},
|
2021-08-13 20:53:29 +02:00
|
|
|
"dependencies": {
|
2021-10-16 21:48:57 +02:00
|
|
|
"@aws-sdk/client-s3": "^3.36.1",
|
|
|
|
"@aws-sdk/node-http-handler": "^3.36.0",
|
|
|
|
"@babel/preset-env": "^7.15.8",
|
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
2021-12-22 18:43:39 +01:00
|
|
|
"@fosscord/api": "file:../api",
|
|
|
|
"@fosscord/cdn": "file:../cdn",
|
|
|
|
"@fosscord/gateway": "file:../gateway",
|
|
|
|
"@sentry/node": "^6.16.1",
|
|
|
|
"@sentry/tracing": "^6.16.1",
|
2021-10-10 11:03:04 +02:00
|
|
|
"ajv": "8.6.2",
|
|
|
|
"ajv-formats": "^2.1.1",
|
|
|
|
"amqplib": "^0.8.0",
|
|
|
|
"assert": "^1.5.0",
|
2021-08-13 12:58:18 +02:00
|
|
|
"async-exit-hook": "^2.0.1",
|
2021-10-10 11:03:04 +02:00
|
|
|
"bcrypt": "^5.0.1",
|
|
|
|
"body-parser": "^1.19.0",
|
|
|
|
"btoa": "^1.2.1",
|
2021-10-16 21:48:57 +02:00
|
|
|
"cheerio": "^1.0.0-rc.10",
|
2021-10-10 11:03:04 +02:00
|
|
|
"dotenv": "^8.2.0",
|
|
|
|
"exif-be-gone": "^1.2.0",
|
2021-08-13 12:58:18 +02:00
|
|
|
"express": "^4.17.1",
|
2021-10-10 11:03:04 +02:00
|
|
|
"express-async-errors": "^3.1.1",
|
|
|
|
"file-type": "^16.5.0",
|
2021-10-18 22:55:54 +02:00
|
|
|
"form-data": "^4.0.0",
|
2021-10-10 11:03:04 +02:00
|
|
|
"fs-extra": "^10.0.0",
|
|
|
|
"i18next": "^19.9.2",
|
|
|
|
"i18next-http-middleware": "^3.1.3",
|
|
|
|
"i18next-node-fs-backend": "^2.1.3",
|
|
|
|
"image-size": "^1.0.0",
|
|
|
|
"jest": "^27.0.6",
|
|
|
|
"jsonwebtoken": "^8.5.1",
|
|
|
|
"lambert-db": "^1.2.3",
|
|
|
|
"lambert-server": "^1.2.11",
|
2021-10-16 21:48:57 +02:00
|
|
|
"missing-native-js-functions": "^1.2.18",
|
2021-10-10 11:03:04 +02:00
|
|
|
"morgan": "^1.10.0",
|
|
|
|
"multer": "^1.4.2",
|
2022-02-04 21:14:48 +01:00
|
|
|
"nanocolors": "^0.2.12",
|
2022-01-24 07:06:31 +01:00
|
|
|
"node-fetch": "^2.6.2",
|
2021-09-12 21:09:29 +02:00
|
|
|
"node-os-utils": "^1.3.5",
|
2021-10-10 11:03:04 +02:00
|
|
|
"patch-package": "^6.4.7",
|
|
|
|
"pg": "^8.7.1",
|
2021-12-25 12:09:48 +01:00
|
|
|
"picocolors": "^1.0.0",
|
2021-10-23 20:17:07 +02:00
|
|
|
"proxy-agent": "^5.0.0",
|
2021-10-10 11:03:04 +02:00
|
|
|
"reflect-metadata": "^0.1.13",
|
2022-02-04 21:14:48 +01:00
|
|
|
"sqlite3": "^4.2.0",
|
2021-10-10 11:03:04 +02:00
|
|
|
"supertest": "^6.1.6",
|
2021-12-22 18:43:39 +01:00
|
|
|
"tslib": "^2.3.1",
|
2021-10-10 11:03:04 +02:00
|
|
|
"typeorm": "^0.2.37",
|
|
|
|
"typescript": "^4.1.2",
|
2022-03-06 07:18:35 +01:00
|
|
|
"typescript-cached-transpile": "^0.0.6",
|
2021-10-10 11:03:04 +02:00
|
|
|
"typescript-json-schema": "^0.50.1",
|
2022-03-03 23:09:05 +01:00
|
|
|
"ws": "^7.4.2",
|
|
|
|
"nan": "^2.15.0"
|
2021-08-13 12:58:18 +02:00
|
|
|
}
|
2022-02-04 21:14:48 +01:00
|
|
|
}
|