-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.05 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.05 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
{
"name": "chatters",
"version": "1.0.0",
"description": "Chat application with nextjs frontend and node.js backend",
"private": true,
"scripts": {
"install:all": "npm install && npm run install:parallel",
"install:parallel": "concurrently --names \"SERVER,CLIENT\" --prefix-colors \"red,blue\" \"npm install --workspace=server\" \"npm install --workspace=client\"",
"dev": "concurrently --kill-others --names \"SERVER,CLIENT\" --prefix-colors \"red,blue\" \"npm run dev --workspace=server\" \"npm run dev --workspace=client\"",
"start:client": "npm run build --workspace=client && npm run start --workspace=client",
"start": "concurrently --kill-others --names \"SERVER,CLIENT\" --prefix-colors \"red,blue\" \"npm run start --workspace=server\" \"npm run start:client\"",
"docker:up": "docker-compose up --build",
"docker:down": "docker-compose down"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"workspaces": [
"client",
"server"
],
"author": "arshGoyalDev",
"license": "MIT"
}