-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.11 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "chatty",
"version": "1.0.0",
"description": "Chatty is an application for chatting online!",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"start": "node server.js",
"client": "cd client && npm start"
},
"keywords": [],
"author": "Burak Yazan <[email protected]>, Berkay Sahin <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/burakyzn/chatty.git"
},
"bugs": {
"url": "https://github.com/burakyzn/chatty/issues"
},
"homepage": "https://github.com/burakyzn/chatty#readme",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"concurrently": "^7.3.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"firebase-admin": "^11.0.1",
"mongoose": "^6.5.2",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"socket.io": "^4.5.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}