-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 KB
/
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
41
42
43
44
{
"name": "sample-websocket",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc --build",
"clean": "tsc --build --clean",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"engines": {
"node": ">=18.13.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"google-search-results-nodejs": "^2.1.0",
"openai": "^4.0.0",
"socket.io": "^4.6.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@supabase/supabase-js": "^2.42.7",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"concurrently": "^8.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.5",
"ts-node-dev": "^2.0.0",
"tsx": "^4.10.1",
"typescript": "^5.2.2",
"typescript-eslint": "^7.7.0"
}
}