forked from StephCambria/mylochat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 851 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
{
"name": "mylochat",
"version": "1.0.0",
"description": "A messaging app that uses React, MERN Stack, Express, MongoDB, Apollo, and GraphQL",
"engines": {
"node": "v16.17.0"
},
"main": "server.js",
"scripts": {
"start": "env NODE_ENV=production node server/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"author": "Stephanie Cambria, Joyce Chen, Caleb Lacson, Tyler Porter",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.3.0"
},
"dependencies": {
"express": "^4.18.2",
"serve": "^14.1.2",
"socket.io": "^4.5.4"
}
}