-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 850 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 850 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
{
"name": "know-me-backend-server",
"version": "1.0.0",
"description": "Backend server for KnowMe web app",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"emailing-install": "npm install --prefix emailing",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"emailing": "npm run receive --prefix emailing",
"dev": "concurrently \"npm run server\" \"npm run client\" \"npm run emailing\""
},
"author": "Abraham Lara",
"license": "ISC",
"dependencies": {
"amqplib": "^0.5.3",
"bcryptjs": "^2.4.3",
"concurrently": "^4.1.0",
"config": "^3.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"uuid": "^3.3.3"
},
"devDependencies": {
"nodemon": "^1.18.11"
}
}