-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "insomniac-hf-guy",
"version": "1.0.0",
"description": "Lightweight AI workflow with personalized chatbot, RAG, and structured delivery",
"type": "module",
"scripts": {
"dev": "npm run dev:backend",
"dev:backend": "tsx watch src/server.ts",
"dev:frontend": "vite",
"dev:both": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build": "tsc && vite build web",
"start": "node dist/server.js",
"type-check": "tsc --noEmit"
},
"keywords": [
"ai",
"chatbot",
"rag",
"typescript",
"openai"
],
"author": "",
"license": "MIT",
"dependencies": {
"@emailjs/browser": "^4.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"nodemailer": "^6.9.9",
"openai": "^4.28.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.19",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.8",
"concurrently": "^8.2.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vite": "^5.1.3"
}
}