-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 964 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
30
31
32
33
{
"name": "social-lite",
"version": "1.5.0",
"description": "An online messaging platform",
"main": "server.js",
"scripts": {
"server": "nodemon server.js --ignore 'client/'",
"client": "npm run serve --prefix client",
"socket": "npm run start --prefix socket",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run socket\"",
"start": "node server.js",
"build": "npm install --prefix client && npm run build --prefix client"
},
"keywords": [],
"author": "FPLCodes",
"bugs": "https://github.com/FPLCodes/SocialLite/issues",
"homepage": "https://social-lite-app.herokuapp.com/",
"license": "ISC",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase": "^9.1.0",
"mongoose": "^6.0.7",
"morgan": "^1.10.0"
},
"devDependencies": {
"concurrently": "^6.2.1",
"nodemon": "^2.0.12"
}
}