-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "chat-app",
"version": "1.0.0",
"description": "Full-stack real-time chat application",
"main": "index.js",
"scripts": {
"build": "npm install --prefix backend && npm install --prefix frontend && npm run build --prefix frontend",
"start": "npm run start --prefix backend",
"dev": "concurrently \"npm run dev --prefix backend\" \"npm run dev --prefix frontend\"",
"install:all": "npm install --prefix backend && npm install --prefix frontend",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"k8s:deploy": "kubectl apply -f k8s/",
"k8s:delete": "kubectl delete -f k8s/"
},
"keywords": ["chat", "real-time", "socket.io", "react", "node.js"],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}