-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1017 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1017 Bytes
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
{
"name": "opentestudox-server",
"version": "0.1.0",
"description": "Backend server for Testudox, a privacy-first end-to-end encrypted messaging system powered by the Testudox Protocol.",
"author": {
"name": "Varad Dnyaneshwar Modhekar",
"email": "varadmodhekar101@gmail.com"
},
"license": "GPL-3.0",
"type": "module",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/varadTheDeveloper/CipherRelay.git"
},
"keywords": [
"opentestudox",
"e2e",
"encryption",
"privacy",
"messaging",
"nodejs",
"secure-server"
],
"scripts": {
"dev": "node --watch index.js",
"start": "node index.js",
"lint": "eslint ."
},
"dependencies": {
"@aws-sdk/client-ses": "^3.1036.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"libsodium-sumo": "^0.8.2",
"libsodium-wrappers-sumo": "^0.8.2",
"pg": "^8.16.3",
"resend": "^6.12.2"
}
}