-
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.16 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.16 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": "zeroauth-chat",
"version": "1.2.0",
"description": "Instant real-time chat with zero account registration needed. Powered by device-bound UUIDs, live channel grids, WebRTC calling, and 7-day auto-pruning.",
"main": "server.js",
"scripts": {
"test": "jest --forceExit --runInBand",
"test:unit": "jest tests/unit --forceExit",
"test:integration": "jest tests/integration --forceExit",
"start": "node server.js",
"build:client": "cd client && npm run build"
},
"keywords": [
"zeroauth-chat",
"no-account-needed",
"zero-registration",
"ephemeral-chat",
"webrtc-calling",
"socket-io",
"react",
"messenger-app",
"privacy-first",
"realtime-chat",
"nodejs",
"vite",
"mysql"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"fluent-ffmpeg": "^2.1.3",
"multer": "^2.1.1",
"mysql2": "^3.22.5",
"sharp": "^0.34.5",
"socket.io": "^4.8.3",
"stream": "^0.0.3"
},
"devDependencies": {
"jest": "^30.4.2",
"socket.io-client": "^4.8.3",
"supertest": "^7.2.2"
}
}