-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.08 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
{
"name": "devconnector",
"version": "1.0.0",
"description": "Social network for developers",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "./node_modules/.bin/concurrently \"npm run server\" \"npm run client\""
},
"author": "Gabriel Margoses",
"license": "MIT",
"dependencies": {
"@material-ui/core": "3.3.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"cors": "2.8.4",
"express": "^4.16.3",
"express-fileupload": "1.0.0",
"gravatar": "^1.6.0",
"jsonwebtoken": "^8.2.0",
"material-ui-icons": "1.0.0-beta.36",
"mongoose": "5.3.8",
"morgan": "1.9.1",
"multer": "1.4.1",
"nodemailer": "4.6.8",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^9.4.1"
},
"devDependencies": {
"nodemon": "1.18.5"
},
"proxy": {
"/api/*": {
"target": "https://127.0.0.1:5000",
"secure": false
}
}
}