The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/ee/server/services/package.json

69 lines
1.9 KiB

{
"name": "rocketchat-authorization",
"version": "1.0.0",
"description": "Rocket.Chat Authorization service",
"main": "index.js",
"scripts": {
"dev": "pm2 start ecosystem.config.js",
"pm2": "pm2",
"start:account": "ts-node --files ./account/service.ts",
"start:authorization": "ts-node --files ./authorization/service.ts",
"start:ddp-streamer": "ts-node --files ./ddp-streamer/service.ts",
"start:presence": "ts-node --files ./presence/service.ts",
"start:stream-hub": "ts-node --files ./stream-hub/service.ts",
"typecheck": "tsc --noEmit --skipLibCheck",
"build": "tsc",
"build-containers": "npm run build && docker-compose build && rm -rf ./dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"rocketchat"
],
"author": "Rocket.Chat",
"license": "MIT",
"dependencies": {
"@rocket.chat/emitter": "^0.30.1",
"@rocket.chat/message-parser": "^0.31.2",
"@rocket.chat/string-helpers": "^0.30.1",
"@rocket.chat/ui-kit": "^0.31.2",
"ajv": "^8.7.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"colorette": "^1.3.0",
"cookie": "^0.4.2",
"cookie-parser": "^1.4.6",
"ejson": "^2.2.2",
"eventemitter3": "^4.0.7",
"express": "^4.17.3",
"fibers": "^5.0.1",
"jaeger-client": "^3.19.0",
"mem": "^8.1.1",
"moleculer": "^0.14.19",
"mongodb": "^3.6.10",
"nats": "^2.4.0",
"pino": "^7.6.4",
"sodium-native": "^3.3.0",
"sodium-plus": "^0.9.0",
"underscore.string": "^3.3.6",
"uuid": "^7.0.3",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/cookie": "^0.4.1",
"@types/cookie-parser": "^1.4.2",
"@types/ejson": "^2.1.3",
"@types/express": "^4.17.13",
"@types/fibers": "^3.1.1",
"@types/mongodb": "^3.6.19",
"@types/node": "^14.17.4",
"@types/ws": "^8.2.2",
"pino-pretty": "^7.5.0",
"pm2": "^5.2.0",
"ts-node": "^10.5.0",
"typescript": "^4.3.5"
},
"volta": {
"node": "14.18.2",
"npm": "6.14.15"
}
}