-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
47
48
49
{
"name": "devconnector",
"version": "1.0.0",
"description": "Social Network for Developers",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server/server",
"server": "nodemon server/server",
"client": "npm start --prefix client",
"dev": "concurrently --kill-others \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjcasti1/devConnector.git"
},
"author": "Francisco Castillo",
"license": "MIT",
"bugs": {
"url": "https://github.com/fjcasti1/devConnector/issues"
},
"homepage": "https://github.com/fjcasti1/devConnector#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"gravatar": "^1.8.1",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"request": "^2.88.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.5"
}
}