forked from SAMA-Communications/sama-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 KB
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
41
42
43
44
45
46
47
{
"name": "sama",
"version": "0.11.0",
"description": "Simple but Advanced Messaging Alternative",
"main": "index.js",
"type": "module",
"scripts": {
"migrate-mongo": "node -r dotenv/config node_modules/migrate-mongo/bin/migrate-mongo.js",
"migrate-mongo-up": "npm run migrate-mongo up",
"migrate-mongo-down": "npm run migrate-mongo down",
"migrate-mongo-status": "npm run migrate-mongo status",
"migrate-mongo-create": "npm run migrate-mongo create",
"start": "nodemon -r dotenv/config index.js",
"test": "nyc mocha -r dotenv/config --exit"
},
"repository": {
"type": "git",
"url": "git@KhomenkoIgor:IgorKhomenko/SAMA.git"
},
"author": "Igor Khomenko",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@aws-sdk/client-s3": "^3.327.0",
"@aws-sdk/s3-request-presigner": "^3.328.0",
"bull": "^4.10.4",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"joi": "^17.8.3",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^9.0.0",
"minio": "^7.0.32",
"mongodb": "^4.9.1",
"nodemon": "^2.0.19",
"redis": "^4.5.1",
"string_decoder": "^1.3.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.10.0",
"websocket": "^1.0.34",
"ws": "^8.12.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"engines": {
"node": "18.x"
}
}