-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.24 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": "gitto",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "12.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"start": "node server.js",
"client": "cd client && npm start",
"dev": "concurrently -n 'server,client' -c 'yellow,blue' \"nodemon server.js\" \"npm run client\"",
"heroku-postbuild": "npm run install-client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Samridhi-98/Gitto.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Samridhi-98/Gitto/issues"
},
"homepage": "https://github.com/Samridhi-98/Gitto#readme",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"concurrently": "^6.0.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"method-override": "^3.0.0",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"nodemailer": "^6.5.0",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"socket.io": "^4.1.2"
}
}