-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
41
42
43
44
45
46
{
"name": "chatapp",
"version": "1.2.0",
"description": "Chat App for CS97",
"main": "server.js",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^6.0.0",
"cookie-session": "^1.4.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongodb": "^3.6.11",
"nodemon": "^2.0.7",
"npm": "^7.6.0",
"react-router-dom": "^5.2.0",
"uuid": "^8.3.2",
"yarn": "^1.22.10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"build": "cd client && npm run build",
"install-client": "npm install && cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDarkLord247/chatapp.git"
},
"author": "Milo, Sudhanshu, Aman, Yan, Kevin",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheDarkLord247/chatapp/issues"
},
"homepage": "https://github.com/TheDarkLord247/chatapp#readme",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.15.0"
}
}