-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1010 Bytes
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
{
"name": "eyedentify2.0",
"version": "0.1.0",
"description": "Social network for developers",
"main": "server.js",
"author": "Omar Villanueva",
"license": "MIT",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm run start --prefix client",
"client-build": "npm run build --prefix client",
"client-install": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.18.3",
"concurrently": "4.1.0",
"cors": "2.8.5",
"express": "4.16.4",
"gridfs-stream": "1.1.1",
"jsonwebtoken": "8.4.0",
"method-override": "3.0.0",
"mongoose": "5.4.7",
"multer": "1.4.1",
"multer-gridfs-storage": "3.2.3",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"socket.io": "2.2.0",
"validator": "10.11.0"
},
"devDependencies": {
"nodemon": "1.17.3"
},
"engines": {
"node": "10.15.1"
}
}