forked from RocketChat/Rocket.Chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 950 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"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": "ts-node index.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": {
"bcrypt": "^5.0.0",
"ejson": "^2.2.0",
"jaeger-client": "^3.18.1",
"mem": "^6.1.0",
"moleculer": "^0.14.20",
"mongodb": "^3.6.6",
"nats": "^1.4.8",
"underscore.string": "^3.3.5",
"uuid": "^7.0.3",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/ejson": "^2.1.2",
"@types/node": "^14.6.4",
"@types/ws": "^7.2.6",
"pm2": "^4.4.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
}
}