Skip to content
Snippets Groups Projects
package.json 1.34 KiB
Newer Older
{
	"name": "@rocket.chat/authorization-service",
	"private": true,
github-actions[bot]'s avatar
github-actions[bot] committed
	"version": "0.1.1",
	"description": "Rocket.Chat Authorization service",
	"scripts": {
		"build": "tsc -p tsconfig.json",
		"ms": "TRANSPORTER=${TRANSPORTER:-TCP} MONGO_URL=${MONGO_URL:-mongodb://localhost:3001/meteor} ts-node --files src/service.ts",
		"test": "echo \"Error: no test specified\" && exit 1",
		"lint": "eslint src",
		"typecheck": "tsc --noEmit --skipLibCheck -p tsconfig.json"
	},
	"keywords": [
		"rocketchat"
	],
	"author": "Rocket.Chat",
	"dependencies": {
		"@rocket.chat/core-services": "workspace:^",
		"@rocket.chat/core-typings": "workspace:^",
		"@rocket.chat/emitter": "next",
		"@rocket.chat/model-typings": "workspace:^",
		"@rocket.chat/models": "workspace:^",
		"@rocket.chat/rest-typings": "workspace:^",
		"@rocket.chat/string-helpers": "next",
		"@types/node": "^14.18.21",
		"ejson": "^2.2.2",
		"eventemitter3": "^4.0.7",
		"fibers": "^5.0.3",
		"mem": "^8.1.1",
		"moleculer": "^0.14.21",
		"mongodb": "^4.12.1",
		"nats": "^2.4.0",
		"pino": "^8.4.2",
		"polka": "^0.5.2"
	},
	"devDependencies": {
		"@rocket.chat/eslint-config": "workspace:^",
		"@types/eslint": "^8.4.10",
		"@types/polka": "^0.5.4",
		"eslint": "^8.29.0",
		"ts-node": "^10.9.1",
		"typescript": "~5.0.2"
	},
	"main": "./dist/ee/apps/authorization-service/src/service.js",
	"files": [
		"/dist"
	]
}