-
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) · 851 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 851 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_go",
"version": "1.0.0",
"description": "A web based chat application with all features existing in modern day chat application with a new feature of scheduling messages",
"main": "server.js",
"repository": "https://github.com/codex-iter/Chat_Go.git",
"author": "Anshuman Mohapatra <amohapatra2001@gmail.com>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && yarn run build",
"install-client": "cd client && yarn install",
"start": "nodemon server.js",
"client": "cd client && yarn start",
"dev": "concurrently -n 'server,client' -c 'red,green' \"nodemon server.js\" \"yarn run client\""
},
"dependencies": {
"concurrently": "^5.3.0",
"express": "^4.17.1",
"nodemon": "^2.0.7",
"react-router-dom": "^5.2.0"
}
}