-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 810 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "ai-chat-interface",
"version": "1.0.0",
"description": "Privacy-first AI chat interface with OpenAI integration",
"scripts": {
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"start:frontend": "cd frontend && npm run preview",
"start:backend": "cd backend && npm run start",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "cd frontend && npm run build",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.10",
"concurrently": "^8.2.2"
},
"dependencies": {
"@heroicons/react": "^1.0.6"
}
}