-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
29 lines (29 loc) · 983 Bytes
/
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
{
"name": "chat-app",
"version": "1.0.0",
"description": "Chat application for 'theyoungminds.org'",
"main": "index.js",
"scripts": {
"client": "cd client && npm start",
"server": "cd server && npm run devStart",
"test": "echo \"Error: no test specified\" && exit 1",
"build-client": "cd client && npm install && npm run build",
"build-server": "cd server && npm install",
"start": "cd server && npm start",
"chat-app": "concurrently --names \"CLIENT,SERVER\" -c \"blue.bold,green.bold\" \"npm run client\" \"npm run server\"",
"heroku-postbuild": "npm run build-client; npm run build-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Subhash3/chat-app.git"
},
"author": "Subhash Sarangi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Subhash3/chat-app/issues"
},
"homepage": "https://github.com/Subhash3/chat-app#readme",
"devDependencies": {
"concurrently": "^5.3.0"
}
}