1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 10:11:34 +02:00
server/bundle/package.json

102 lines
3.0 KiB
JSON
Raw Normal View History

2021-08-13 12:58:18 +02:00
{
"name": "@fosscord/server",
"version": "1.0.0",
"description": "",
"main": "src/start.js",
"scripts": {
2021-10-10 11:03:04 +02:00
"setup": "node scripts/install.js && npm install && 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",
2021-10-10 18:28:50 +02:00
"migrate": "cd ../util/ && npm i && node --require ts-node/register node_modules/typeorm/cli.js -f ../util/ormconfig.json migration:run"
2021-08-13 12:58:18 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/fosscord/fosscord-server.git"
2021-08-13 12:58:18 +02:00
},
"keywords": [],
"author": "Fosscord",
"license": "AGPLV3",
"bugs": {
"url": "https://github.com/fosscord/fosscord-server/issues"
2021-08-13 12:58:18 +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",
"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",
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
},
"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-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",
"form-data": "^3.0.0",
"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",
2021-10-04 21:39:50 +02:00
"nanocolors": "^0.2.12",
2021-10-10 11:03:04 +02:00
"node-fetch": "^2.6.1",
"node-os-utils": "^1.3.5",
2021-10-10 11:03:04 +02:00
"patch-package": "^6.4.7",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
2021-10-17 01:39:41 +02:00
"sqlite3": "^5.0.2",
2021-10-10 11:03:04 +02:00
"supertest": "^6.1.6",
"typeorm": "^0.2.37",
"typescript": "^4.1.2",
"typescript-json-schema": "^0.50.1",
2021-10-16 21:48:57 +02:00
"ws": "^7.4.2"
2021-08-13 12:58:18 +02:00
}
2021-10-17 01:39:41 +02:00
}