-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "firefliesproxy",
"version": "1.0.0",
"description": "A proxy service for Fireflies.ai real-time transcriptions",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"test:api": "tsx scripts/test-api.ts",
"test:supabase": "tsx scripts/check-supabase-connection.ts"
},
"keywords": [
"fireflies.ai",
"transcription",
"realtime",
"websocket",
"supabase"
],
"author": "",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"@types/compression": "^1.8.0",
"@types/cors": "^2.8.18",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.2.0",
"module-alias": "^2.2.2",
"socket.io-client": "^4.7.2",
"tsx": "^4.7.1",
"uuid": "^9.0.1"
},
"_moduleAliases": {
"@": "./dist"
},
"type": "module",
"devDependencies": {
"@types/express": "^4.17.22",
"@types/node": "^22.15.21",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"axios": "1.13.2",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}